VKinfotek Inc.
  • Us
    About Us
    Contact Us
  • FAQs
  • Ready Software
    Ready ERP ASP Core Software for Azure Cloud
    Ready Web ERP Software
    Ready ASP.Net Azure Software
    Ready C# SQL Server Accounting Software
    Ready ASP.Net MVC and EF Software
First slide
Earn $100/hour in USA! Click Here

query entity data model using linq to entities


Using LINQ to Entities, we write LINQ queries against entities in EDM- Entity Data Model. This is one way of querying an entity data model.

This means that in practice, we write the LINQ query within the application code as shown in the program given below. These LINQ queries can be written either in vb.net or C# syntax. If we are developing applications such as ERP applications based on vb.net, then we need to write the LINQ query using vb.net syntax.

If application is being created as a c# project, the LINQ query has to be written in c# syntax. Note that there are many differences between LINQ queries written in VB and C#.

Because these queries are integrated in to the language, these queries are called Language Integrated Queries (LINQ). The following code demonstrates how to write a LINQ to Entities query using LINQ operators.

If you want to know benefits and applications of LINQ click here.

To write and execute a LINQ to Entities query, we will create a console application. The steps to create a console application are given below.

Choose File -> New -> Project to create a new project and click on the Console Application icon. Name the application as ERPConsoleApplication and click the OK button. A C# source file with the name program.cs is created.

Add a reference to the Entity Data Model project which we have seen in the article - How to create Entity data Model using ADO.Net Entity Framework designer in Visual studio.

We will also add a reference to the System.Data.Entity assembly. Next add an application configuration file (App.config) and copy the connection string from the App.config file of the Entity Data Model project. Finally add the below code to the Main() method.

class Program
{
	static void Main(string[] args)
	{
		using (var context = new SalesOrderManagementEntities())
		{
			// Query all the customers using LINQ to Entities query using c#.
			var Customers = from c in context.Customer
			select c;
			foreach (var Customer in Customers)
			{
				Console.WriteLine(String.Format("{0} {1}",
				Customer.Name, Customer.Address ));
			}
			Console.WriteLine();
			Console.ReadLine();
		}
	}
}
In the above code SalesOrderManagementEntities class is inherited from the ObjectContext. SalesOrderManagementEntities represents EntityContainer.

SalesOrderManagementEntities has a property customer which is a EntitySet in the Entity Data Model.

In the LINQ query given above, we have used ObjectContext class ( SalesOrderManagementEntities) property Customer to get data from the Customer table.

In the same query statement, c allows us to refer what we are working with in the query. C is called control variable and when typed in the program intellisense prompts us with suggestions.

Entity Framework Articles
  • entity framework entity data model
  • entity framework orm object relational mapper
  • querying entity data model using objectcontext
  • using ado net entity data model in windows applications.html
  • create entity data model using ado.net entity framework designer in visual studio
  • create-sales-order-management-data-model-using-edmgen-tool.html
  • display data in a gridview using ado.net entity data source control
  • ways of querying entity data model
  • query entity data model with object services and entity sql
  • query entity data model using linq methods
  • parameterized objectquery against a entity data model
  • query entity data model entity client
  • linq to entities query with projections in c#
  • entity framework - save changes to entities
  • entity framework - insert new objects
  • add an entity to associated entities
  • deleting entities using deleteobject() method of objectcontext
  • entity framework load method
  • eager loading using include method in entity framework
  • entity framework - retrieving a single entity
Most Viewed

Home
Home
Azure Q & A
Azure Platform
Grid-View
GridView CommandField example
Details-View
GridView and DetailsView Master/Detail page using SqlDataSource control
POCO
POCO overview and advantages - POCO class, Entity Framework in Enterprise Applications
Array List
Difference between arraylist and list collection
Web Services
How to create a Web service using Visual Studio.net
Form-View
FormView DataBound Event
Object Oriented Programming
Calling base class constructor in C#
Linq
Convert a sequence to a generic list using ToList()method
Project Ideas
Project ideas for students
AccountingSoftware
Accounting Software
MVC
Creating an ASP.Net MVC 3 application
.Net
Using assemblies in .net applications
ASP .Net
How to implement form validation using ASP.Net 2.0 Validation Controls
VB .Net
Constructors in Visual Basic.Net


  • SITEMAP
  • Terms of use
  • Testimonials

Back to top

Copyright © 2016 - All Rights Reserved - VKInfotek.com