Model-First Approach
This section describes how to use the Entity Data Model wizard to create the .edmx file and execute queries.
Install and Set Up Entity Framework
Install Entity Framework or add references to the required assemblies for your chosen version of Entity Framework. The assemblies are located in the lib subfolder of the installation directory. See Using EF 6 for using Entity Framework 6 (EF6). See Installed Assemblies for more information about all assemblies shipped with the provider
Add a Data Connection in Server Explorer
Before you can create an Entity Data Model, you will need to create a data connection. To do this,
- Navigate to Server Explorer -> right click "Data Connections" -> Add Connection...
- Click the Change button beside the Data Source box.
- Select CData AlloyDB Data Source, then click OK.
- Configure your connection settings, then click OK.
Add a New Item To Your Project
In the Visual Studio Solution Explorer, right-click your project and click Add > New Item.
Create an ADO.NET Entity Data Model
In the resulting Add New Item dialog, click ADO.NET Entity Data Model and enter an appropriate title, such as "AlloyDBEntityDataModel.edmx".
Use the Entity Data Model Wizard
Complete the following steps to create the .edmx file with the Entity Data Model wizard:
- On the first page, select Generate from database.
- On the next page, select the data provider connection you want to use with your project or create a new connection.
- Select whether to include sensitive data (such as passwords) in the connection string. Note that the option to exclude sensitive data means password fields are not copied to the generated config file with the rest of the connection string properties.
- Select the box to save the entity connection settings in App.Config, and enter a name for the context class of the data connection; for example, "AlloyDBEntities".
After Visual Studio retrieves the necessary information from the live data source, the wizard presents a listing of database objects you can include in your project. Note that this step may take several minutes as Visual Studio retrieves table schemas from AlloyDB.
Perform LINQ Commands in Your Code
You are now ready to start using LINQ in your code.
C#
AlloyDBEntities context = new AlloyDBEntities();
var OrdersQuery = from Orders in context.Orders
orderby Orders.ShipCity
select Orders;
VB.NET
Dim context As AlloyDBEntities = New AlloyDBEntities()
Dim OrdersQuery = From Orders In context.Orders
Order By Orders.ShipCity
Select Orders
Note: Be sure to declare (c#)"using System.Linq"/(VB.Net)"Imports System.Linq" in your file.