This tag is for questions about LINQ to Entities, which means LINQ queries using the ADO.
I've seen two different manners that programmers approach when creating an entity context in their code. The first is like …
linq entity-framework linq-to-entities entityI always assumed that if I was using Select(x=> ...) in the context of LINQ to objects, then the …
c# linq linq-to-entitiesI want to achieve the following in Linq to Entities: Get all Enquires that have no Application or the Application …
linq linq-to-entities left-join outer-joinI have a database mapped with Entity Framework, I need to implement a generic method for getting a a list …
linq-to-entities entity-framework-5 dynamic-data auto-generateIs there a way to call T-Sql's MERGE command from .NET Entity framework 4?
c# linq entity-framework linq-to-entities sql-mergeI am working on a Dynamic data. after creating a dynamic model and registering in global.asax, like DefaultModel.RegisterContext(…
exception entity-framework-4 linq-to-entities dynamic-dataMorning (in RSA at least), I'm trying to create a data driven menu, using data from a self-referencing table to …
c# asp.net linq-to-entities datatable datarelationI am new to ASP.NET and could use some help writing a where clause for my EntityDataSource. I have …
c# asp.net linq-to-entities where-clause entitydatasourceI am using datatables in quite a few pages in my ASP.NET MVC 3 site. They use server side paging …
c# linq entity-framework linq-to-entities dynamic-linqI am trying to replicate the following SQL using LINQ to EF but with no luck. select * from Role left …
linq-to-entities left-join multiple-conditions