This tag is for questions about LINQ to Entities, which means LINQ queries using the ADO.
I am trying to understand left outer joins in LINQ to Entity. For example I have the following 3 tables: Company, …
join linq-to-entities outer-joinI'm using LINQ to Entities for Entity Framework objects in my Data Access Layer. My goal is to filter as …
c# entity-framework linq-to-entities predicate linqkitI'm learning about Entity Framework at the mo, and am having problems!! Can someone clarify if I am right in …
entity-framework linq-to-entities entity-framework-4.1In my EF later, I'm trying to pass in an anonymous function to be used as part of my Linq …
c# asp.net linq entity-framework linq-to-entitiesI have a console application and what I'm trying to do is that every time the appllication runs, the date …
c# linq-to-entities edmxI have the following linq-to-entities query with 2 joined tables that I would like to add pagination to: IQueryable<ProductInventory&…
linq join linq-to-entities paginationWhat's the simplest way to code against a property in C# when I have the property name as a string? …
c# .net linq linq-to-entitiesI've been programming for a while and have used LINQ-To-SQL and LINQ-To-Entities before (although when using entities it has been …
entity-framework entity-framework-4 linq-to-entities pocoI am trying to determine the number of days between 2 dates using LINQ with Entity Framework. It is telling me …
entity-framework datetime linq-to-entitiesThere are numerous post regarding LINQ and multiple joins. I have however not found any solution to the join I'd …
linq linq-to-entities