How to: Return a LINQ Query Result as a Specific Type (Visual Basic)
Language-Integrated Query (LINQ) makes it easy to access database information and execute queries. By default, LINQ queries return a list of objects as an anonymous type. You can also specify that a query return a list of a specific type by using the Select
clause.
The following example shows how to create a new application that performs queries against a SQL Server database and projects the results as a specific named type. For more information, see Anonymous Types and Select Clause.
The examples in this topic use the Northwind sample database. If you do not have this database on your development computer, you can download it from the Microsoft Download Center. For instructions, see Downloading Sample Databases.
Note
Your computer might show different names or locations for some of the Visual Studio user interface elements in the following instructions. The Visual Studio edition that you have and the settings that you use determine these elements. For more information, see Personalizing the IDE.
To create a connection to a database
In Visual Studio, open Server Explorer/Database Explorer by clicking Server Explorer/Database Explorer on the View menu.
Right-click Data Connections in Server Explorer/Database Explorer and then click Add Connection.
Specify a valid connection to the Northwind sample database.
To add a project that contains a LINQ to SQL file
In Visual Studio, on the File menu, point to New and then click Project. Select Visual Basic Windows Forms Application as the project type.
On the Project menu, click Add New Item. Select the LINQ to SQL Classes item template.
Name the file
northwind.dbml
. Click Add. The Object Relational Designer (O/R Designer) is opened for the northwind.dbml file.
To add tables to query to the O/R Designer
In Server Explorer/Database Explorer, expand the connection to the Northwind database. Expand the Tables folder.
If you have closed the O/R Designer, you can reopen it by double-clicking the northwind.dbml file that you added earlier.
Click the Customers table and drag it to the left pane of the designer.
The designer creates a new
Customer
object for your project. You can project a query result as theCustomer
type or as a type that you create. This sample will create a new type in a later procedure and project a query result as that type.Save your changes and close the designer.
Save your project.
To add code to query the database and display the results
From the Toolbox, drag a DataGridView control onto the default Windows Form for your project, Form1.
Double-click Form1 to modify the Form1 class.
After the
End Class
statement of the Form1 class, add the following code to create aCustomerInfo
type to hold the query results for this sample.Public Class CustomerInfo Public Property CompanyName As String Public Property ContactName As String End Class
When you added tables to the O/R Designer, the designer added a DataContext object to your project. This object contains the code that you must have to access those tables, and to access individual objects and collections for each table. The DataContext object for your project is named based on the name of your .dbml file. For this project, the DataContext object is named
northwindDataContext
.You can create an instance of the DataContext in your code and query the tables specified by the O/R Designer.
In the
Load
event of the Form1 class, add the following code to query the tables that are exposed as properties of your data context. TheSelect
clause of the query will create a newCustomerInfo
type instead of an anonymous type for each item of the query result.Dim db As New northwindDataContext Dim customerList = From cust In db.Customers Where cust.CompanyName.StartsWith("L") Select New CustomerInfo With {.CompanyName = cust.CompanyName, .ContactName = cust.ContactName} DataGridView1.DataSource = customerList
Press F5 to run your project and view the results.
See also
Feedback
Submit and view feedback for