Tagged Questions
This tag is for questions about LINQ to Entities, which means LINQ queries using the ADO.NET Entity Framework. Note that this is different than LINQ to SQL or other LINQ providers.
124
votes
8answers
5k views
Learning about LINQ
Overview
One of the things I've asked a lot about on this site is LINQ. The questions I've asked have been wide and varied and often don't have much context behind them. So in an attempt to ...
91
votes
9answers
17k views
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 on a Entity/Table 1-1 relationship - ie not much different than L2SQL)
...
62
votes
24answers
4k views
Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?
I'd like the community's take on some thoughts I've had about Linq to Sql and other ORM mappers.
I like Linq to Sql and the idea of expressing data access logic (or CRUD operations in general) in ...
57
votes
7answers
36k views
How to do SQL Like % in Linq?
I have a procedure in SQL that I am trying to turn into Linq:
SELECT O.Id, O.Name as Organization
FROM Organizations O
JOIN OrganizationsHierarchy OH ON O.Id=OH.OrganizationsId
where OH.Hierarchy ...
40
votes
4answers
3k views
How to move from Linq 2 SQL to Linq 2 Entities?
I'd like to start a reference for people who want to move from linq2sql to linq2entities and the ADO.net Entity Framework (in here called L2E). I don't want to discuss which of these two is better. I ...
39
votes
4answers
18k views
Linq to Entities - Sql “IN” clause
In T-SQL you could have a query like:
SELECT * FROM Users WHERE User_Rights IN ("Admin", "User", "Limited")
How would you replicate that in a Linq to Entities query? Is it even possible? Thanks!
37
votes
7answers
20k views
Problem with converting int to string in Linq to entities
var items = from c in contacts
select new ListItem
{
Value = c.ContactId, //Cannot implicitly convert type 'int' (ContactId) to 'string' (Value).
...
34
votes
7answers
11k views
Entity Framework VS LINQ to SQL VS ADO.NET with stored procedures?
How would you rate each of them in terms of:
Performance
Speed of development
Neat, intuitive, maintainable code
Flexibility
Overall
I like my SQL and so have always been a die-hard fan of ADO.NET ...
32
votes
4answers
13k views
SQL tracing LINQ to Entities
So, I would like to know oh to do a "full" tracing of Linq to Entities?
In other words:
I already know about the ToTraceString() method, but this only works on an ObjectQuery. I need it to work on ...
31
votes
1answer
775 views
Strange LINQ To Entities Exception
I am using a LINQ statement that selects from various tables information I need to fill some Post / Post Comment style records. I'm getting a funny exception saying that the object must implement ...
29
votes
11answers
20k views
'Contains()' workaround using Linq to Entities?
I'm trying to create a query which uses a list of ids in the where clause, using the Silverlight ADO.Net Data Services client api (and therefore Linq To Entities). Does anyone know of a workaround to ...
26
votes
6answers
3k views
Is LINQ to SQL deprecated?
Back in late 2008 there was a lot of debate about the future of LINQ to SQL. Many suggested that Microsoft's investments in the Entity Framework in .NET 4.0 were a sign that LINQ to SQL had no ...
22
votes
5answers
19k views
Linq int to string
how do I cast and int into a string? None of the following do works:
from s in ctx.Services
where s.Code.ToString().StartsWith("1")
select s
from s in ctx.Services
where ...
22
votes
12answers
9k views
Group by Weeks in LINQ to Entities
I have an application that allows users to enter time they spend working, and I'm trying to get some good reporting built for this which leverages LINQ to Entities. Because each TrackedTime has a ...
19
votes
4answers
6k views
How to do a Bulk Insert — Linq to Entities
I cannot find any examples on how to do a Bulk/batch insert using Linq to Entities. Do you guys know how to do a Bulk Insert?
19
votes
6answers
18k views
ADO.NET Entity Connection String for Multiple Projects
I am using multiple layer project where the DataModel hosts the ADo.NET Entity model and DataAccess layer does the validation.
However everytime I get a error like this
The specified named ...
19
votes
6answers
6k views
Bulk-deleting in LINQ to Entities
Is there any way to bulk-delete a bunch of objects matching a given query in LINQ or LINQ-to-Entities? The only references that I can find are outdated, and it seems silly to iterate over and ...
18
votes
1answer
285 views
How to generate all my entities composed two tables for each entity via a T4 automation
I have a class library project for a data access layer that uses Entity Framework 4. My project needs a versioning concept. My database contains many tables that contain «Id» and «CreationDateTime». ...
18
votes
3answers
11k views
Entity framework and queries' SQL logging
I'm using LINQ to Entities. I need to log the resulting SQL of every executed query. It'd be nice to log the execution times and the number of rows returned, though it's not crucial.
Is there a way ...
17
votes
7answers
14k views
How to compare only date components from DateTime in C#?
I am having two date values, one already stored in the database and the other selected by the user using DatePicker. The use case is to search for a particular date from the database.
The value ...
17
votes
4answers
21k views
“NOT IN” clause in LINQ to Entities
Is there anyway I can create a not in clause like I would have in SQL Server in Linq to Entities?
Cheers
Paul
17
votes
7answers
13k views
How to do a “where in values” in LINQ-to-Entities 3.5
Does anybody know how to apply a "where in values" type condition using LINQ-to-Entities? I've tried the following but it doesn't work:
var values = new[] { "String1", "String2" }; // some string ...
16
votes
5answers
17k views
How do I delete an object from an Entity Framework model without first loading it?
I am quite sure I've seen the answer to this question somewhere, but as I couldn't find it with a couple of searches on SO or google, I ask it again anyway...
In Entity Framework, the only way to ...
15
votes
7answers
32k views
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, CompanyProduct, Product
The CompanyProduct is linked to its two parent tables, ...
14
votes
1answer
377 views
Seemingly infinite stack trace in EF 4.0 and poor query performance under load
On a large EF 4.0 model (700+ entities), we are getting poor performance on System.Data.Objects.ObjectContext.CreateObjectSet(string). The call to this is triggered by a query like ...
14
votes
1answer
152 views
LINQ to Entities joining on instance rather than id generates nasty SQL
Can anyone explain why join by entity rather than id generates some really ugly sql when actually conceptually its doing what you'd think was the same thing? e.g.
By id
from companyDirector in ...
13
votes
3answers
326 views
How to use GroupBy properly in LINQ?
I have 4 tables: Post, Category, Relation and Meta
A category can contains multiple posts, and the relation between them is stored in Relation table. A post then can has many extra info that are ...
13
votes
6answers
8k views
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 that it does not recognize Subtract on the System.TimeSpan class
Here is my where ...
13
votes
5answers
6k views
Expression.Invoke in Entity Framework?
The Entity Framework does not support the Expression.Invoke operator. You receive the following exception when trying to use it:
"The LINQ expression node type 'Invoke' is not supported in LINQ ...
12
votes
2answers
241 views
Writing an extension method to help with querying many-to-many relationships
I am trying to write an extension method in order to refactor a linq many-to-many query I'm writing. I am trying to retrieve a collection of Post(s) which have been tagged with any of the Tag(s) in a ...
12
votes
7answers
1k views
Resources for learning LINQ?
I'm looking to learn LINQ, but I'm finding that there is a lot more to it then what I initally expected. In fact, there's so much that I'm not sure where is the best place to start. I know that ...
12
votes
7answers
10k views
Linq to Entities, random order
How do i return matching entities in a random order?
Just to be clear this is Entity Framework stuff and LINQ to Entities.
(air code)
IEnumerable<MyEntity> results = from en in ...
11
votes
2answers
137 views
Is Injection Possible through Dynamic LINQ?
Using the Dynamic LINQ library (link), is it vulnerable to injection? and (if so) how can this be protected against?
Some background from Security Considerations (Entity Framework):
LINQ to ...
11
votes
5answers
325 views
LINQ to SQL or Entities, at this point?
I'm a bit late to the game and have decided to spend some spare time learning LINQ. As an exercise, I'm going to rewrite a WebForms app in MVC 2 (which is also new to me). I managed to find a few ...
11
votes
2answers
2k views
Instantiating a context in LINQ to Entities
I've seen two different manners that programmers approach when creating an entity context in their code.
The first is like such, and you can find it all over the MSDN code examples:
public void ...
11
votes
3answers
2k views
Entity Framework & LINQ To SQL - Conflict of interest?
I've been reading on the blogosphere for the past week that Linq to SQL is dead [and long live EF and Linq to Entities]. But when I read the overview on MSDN, it appeared to me Linq to Entities ...
10
votes
3answers
135 views
Why use LINQ Join on a simple one-many relationship?
I've been using LINQ to SQL and Entity Framework for a few years and I've always mapped my database relationships to generate the relevant navigation properties. And I always use the navigation ...
10
votes
3answers
774 views
Can someone explain why these two linq queries return different results?
I have two linq (to EF4) queries, which return different results. The first query contains the correct results, but is not formatted/projected right.
the second query is what i want but it missing ...
10
votes
3answers
9k views
Like Operator in Entity Framework?
We're trying to implement the "LIKE" operator in Entity Framework for our entities with string fields, but it doesn't appear to be supported. Has anyone else tried to do something like this?
This ...
10
votes
1answer
8k views
Error: The object cannot be deleted because it was not found in the ObjectStateManager
Trying to get a handle on Entity Framework here and I am hitting some speed bumps...
I have a Get() method that works fine and has been tested, but my Delete method is not working:
public static ...
9
votes
2answers
268 views
Using the lambda Include method in a compiled LINQ query
I'm currently trying to optimize some of the LINQ queries in my program by precompiling them.
Some of these queries make extensive use of eager loading; here's an example of one:
public static ...
9
votes
1answer
58 views
List and Linq To Sql Performance Issue
I Have One Table (My Sql) with 2 millions records and one List with 100 Records. I have List Except lamda expression for finding all those Urls that is in List but Not in Table.
Now Issue is that ...
9
votes
4answers
364 views
LINQ returns 0 results if using nullable int variable, accurate results if using “null”
I have a table called "test", which only has 1 column, "NullableInt" (nullable int type)
The records are: 1, 2, null
int? nullableInt = null;
var t = db.tests.Where(x => x.NullableInt == ...
9
votes
4answers
635 views
linq-to-entities / linq-to-sql: switching from server (queryable) to client (enumerable) in the middle of a query comprehension?
NOTE: this is likely simple and my google-fu is just weak. :(
In many cases, I want to do some filtering (and sometimes projection) on the server side and then switch to client-side for operations ...
9
votes
2answers
2k views
linq to entities case sensitive comparison
This isn't a case-sensitive comparison in Linq to entities:
Thingies.First(t => t.Name == "ThingamaBob");
How can I achieve case sensitive comparison with Linq to entities?
9
votes
4answers
316 views
Has Microsoft confirmed their stance on LINQ to SQL end-of-life?
I'm trying to make an educated decision about what ORM to use for a number of legacy applications I'm responsible for porting to MVC 2. The ORMs I've looked at are LINQ to SQL, LINQ to Entities and ...
9
votes
6answers
991 views
Can we control LINQ expression order with Skip(), Take() and OrderBy()
I'm using LINQ to Entities to display paged results. But I'm having issues with the combination of Skip(), Take() and OrderBy() calls.
Everything works fine, except that OrderBy() is assigned too ...
9
votes
2answers
370 views
LINQ generating SQL with duplicate nested selects
I'm very new to the .NET Entity Framework, and I think it's awesome, but somehow I'm getting this strange issue (sorry for the spanish but my program is in that language, anyway it's not a big deal, ...
9
votes
3answers
386 views
Why Does the Entity Framework make so Many Roundtrips to the Database?
I am rewriting my application to use the entity framework. What I am confused about is the code I am writing looks like it is making unnecessary tripts the the sql server. For example, I have a ...
9
votes
2answers
4k views
How do you do full text search (FTS) with Linq to ADO.NET entity framework?
Now that SQL Server 2008 has full text search built in. I'm looking to use it to power my website's search. I'm also looking at using ADO.NET entity framework for my ORM but I was wondering how do you ...