This tag is for questions about LINQ to Entities, which means LINQ queries using the ADO.
Given the object hierarchy public class Parent { public int Id { get; set; } public virtual Child Child { get; set; } } public class …
entity-framework linq-to-entitiesI am building an ASP.Net MVC 3 application with Entity Framework 4. When the two pieces of code below are executed, …
entity-framework-4 asp.net-mvc-3 jqgrid linq-to-entities dynamic-linqI have read all the posts related to implementing the equivalent of a LEFT OUTER JOIN in Linq to Entities (.…
entity-framework linq-to-entities left-join outer-joinI have a plain old CLR object which is essentially a wrapper for two entity framework objects, I'm doing this …
linq entity-framework linq-to-entities strong-typingHow we can write a LINQ query for following select sql query: string brandid="1,2,3" string bodystyleid="1,2,3" ------------------- ----------------- select * from …
linq entity-framework linq-to-entities sql-like in-clauseI found several times people asking for the same question but it seems that the answer was never satisfying altough …
entity-framework linq-to-entities one-to-many eager-loading entitycollectionI have an extension on IQueryable that allows passing in delimited string of property names which, when used causes query …
entity-framework linq-to-entities dynamic-linq objectqueryI want to get Contacts based on phone number, but in Ms Dynamics phone numbers are stored in all kinds …
c# linq linq-to-entities dynamics-crm dynamics-crm-onlineProblem Need to convert int to string using EF4 + SQL CE4. The recommended option of using SqlFunctions.StringConvert(double) still …
entity-framework-4 linq-to-entities sql-server-ce-4