Top "Linq-to-entities" questions

This tag is for questions about LINQ to Entities, which means LINQ queries using the ADO.

Linq to Entity with multiple left outer joins

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-join
Howto use predicates in LINQ to Entities for Entity Framework objects

I'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 linqkit
Entity Framework: Querying Child Entities

I'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.1
"The LINQ expression node type 'Invoke' is not supported in LINQ to Entities" - stumped!

In 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-entities
Error 3002: Problem in mapping fragments | c# linq to entities

I have a console application and what I'm trying to do is that every time the appllication runs, the date …

c# linq-to-entities edmx
Entity Framework 4 - What is the syntax for joining 2 tables then paging them?

I 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 pagination
C# - code to order by a property using the property name as a string

What'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-entities
Entity Framework 4 / POCO - Where to start?

I'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 poco
LINQ to Entities for subtracting 2 dates

I 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-entities
LINQ to Entity : Multiple join conditions

There are numerous post regarding LINQ and multiple joins. I have however not found any solution to the join I'd …

linq linq-to-entities