Question: The tblBooks table in the Books database contains a numeric field named BookNumber. Which of the following will select book number 401 from the BooksDataSet?

The tblBooks table in the Books database contains a numeric field named BookNumber. Which of the following will select book number 401 from the BooksDataSet?

a. Dim records = From book In BooksDataSet.tblBooks

Where book.BookNumber = "401" Select book

b. Dim records = From book In BooksDataSet.tblBooks

Select book.BookNumber = 401

c. Dim records = From book In BooksDataSet.tblBooks

Where book.BookNumber = 401

Select book

d. Dim records = From book In BooksDataSet.tblBooks

Select BookNumber = 401

Step by Step Solution

3.44 Rating (154 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

c Dim records Fro... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming with Microsoft Visual Basic 2015 Questions!