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.

learn more… | top users | synonyms (1)

13
votes
3answers
11k views

ASP.NET MVC 2.0 Implementation of searching in jqgrid

Hi I am trying to use the single column search in jqgrid using MVC 2 IN .NET (VS 2008) this is the code I have so far but I need an example to match it with or a tip of what I am missing ...
49
votes
11answers
34k 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 ...
17
votes
4answers
4k views

How many Include I can use on ObjectSet in EntityFramework to retain performance?

I am using the following LINQ query for my profile page:- var userData = from u in db.Users .Include("UserSkills.Skill") ...
47
votes
3answers
23k 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 ...
84
votes
11answers
50k 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). ...
132
votes
7answers
86k 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 ...
47
votes
8answers
22k 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 ...
14
votes
2answers
3k views

Convert String to Int in EF 4.0

Is there any way of doing this at all? I have a string field in the DB and I want to parse it into a int property in my LINQ query (yes, it must be at the IQueryable level, not in memory). I know 2 ...
30
votes
5answers
23k 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 ...
154
votes
11answers
37k 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) ...
75
votes
6answers
45k 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!
38
votes
9answers
36k 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 ...
145
votes
8answers
7k 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 ...
27
votes
4answers
16k 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?
10
votes
3answers
779 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 ...
52
votes
5answers
27k views

How to use DbContext.Database.SqlQuery<TElement>(sql, params) with stored procedure? EF Code First CTP5

I have a stored procedure that has three parameters and I've been trying to use the following to return the results: context.Database.SqlQuery<myEntityType>("mySpName", param1, param2, param3); ...
21
votes
3answers
6k 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?
92
votes
6answers
39k views

Entity Framework VS LINQ to SQL VS ADO.NET with stored procedures? [closed]

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 ...
66
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 ...
17
votes
2answers
6k 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 ...
5
votes
4answers
3k views

linq to entities doesn't recognize a method

I have those methods: public int count( Guid companyId, Expression<Func<T, bool>> isMatch) { var filters = new Expression<Func<T, bool>>[]{ ...
4
votes
1answer
2k views

EF4 LINQ Ordering Parent and all child collections with Eager Loading (.Include())

I am doing hierarchical data binding on a grid, and I need to have the database server perform the sorting on my objects. I can easily sort the parent collection, but I can't seem to figure out how ...
9
votes
3answers
2k views

LINQ to Entities group-by failure using .date

I am trying to do a Linq group by on just the date part of a datetime field. This linq statement works but it groups by the date and the time. var myQuery = from p in dbContext.Trends ...
36
votes
6answers
7k 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 ...
7
votes
2answers
16k views

How to create a dynamic Linq Join extension method

There was a library of dynamic Linq extensions methods released as a sample with VS2008. I'd like to extend it with a Join method. The code below fails with a parameter miss match exception at run ...
20
votes
9answers
18k 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 ...
24
votes
4answers
41k 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?
15
votes
4answers
18k views

Best way to check if object exists in Entity Framework?

What is the best way to check if an object exists in the database from a performance point of view? I'm using Entity Framework 1.0 (ASP.NET 3.5 SP1).
3
votes
2answers
1k views

Help with Linq and Generics. Using GetValue inside a Query

I'm triying to make a function that add a 'where' clause to a query based in a property and a value. This is a very simplefied version of my function. Private Function simplified(ByVal query As ...
9
votes
3answers
8k views

Why won't this LINQ join statement work?

I have this LINQ-query: // types... LinkedList<WeightedItem> itemScores = new LinkedList<WeightedItem>(); var result = from i in _ctx.Items join s in ...
6
votes
2answers
11k views

ADO.Net Entity Framework across multiple databases

In Linq2Sql you can connect a data context to multiple databases by just adding the database name to the source. Is there a way to achieve this in Linq 2 Entities / ADO.net Entity Framework? Can the ...
4
votes
1answer
5k views

LINQ to Entities does not recognize the method

I'm getting the following error when trying to do a linq query: LINQ to Entities does not recognize the method 'Boolean IsCharityMatching(System.String, System.String)' method, and this method ...
16
votes
3answers
26k views

How do you construct a LINQ to Entities query to load child objects directly, instead of calling a Reference property or Load()

I'm new to using LINQ to Entities (or Entity Framework whatever they're calling it) and I'm writing a lot of code like this: var item = (from InventoryItem item in db.Inventory where ...
6
votes
6answers
5k views

How to check for the presence of an OrderBy in a ObjectQuery<T> expression tree

I'm using t4 for generating repositories for LINQ to Entities entities. The repository contains (amongst other things) a List method suitable for paging. The documentation for Supported and ...
29
votes
3answers
16k 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 ...
6
votes
1answer
7k views

Only primitive types ('such as Int32, String, and Guid') are supported in this context

I'm getting the following error: Unable to create a constant value of type 'Phoenix.Intranet.Web.ClientSettings.ComponentRole'. Only primitive types ('such as Int32, String, and Guid') are ...
5
votes
11answers
2k views

Linq 2 SQL or Linq Entities

I am starting to design a new application and what I am wondering is peoples opinions on Linq2SQL or Linq2Entities and what they feel is the better technology for rapid development. I am also doing ...
4
votes
3answers
901 views

IQueryable extension method for linq2entities

I am trying to implement an extension method that will work with linq2entities. I had initially assumed that if my extension method took and returned an IQueryable, and as long as my expression only ...
7
votes
2answers
6k views

LINQ Dynamic Query Library

I am building an ASP.Net MVC 3 application with Entity Framework 4. When the two pieces of code below are executed, both variables (query1 and query2) have a return type of ...
13
votes
2answers
2k views

String.IsNullOrWhiteSpace in Linq Expression

I have following code: return this.ObjectContext.BranchCostDetails.Where( b => b.TarrifId == tariffId && b.Diameter == diameter || (b.TarrifId==tariffId && ...
7
votes
3answers
2k views

Error, method not supported by LINQ to Entities

Why I am getting this error: The method 'Single' is not supported by LINQ to Entities. Consider using the method 'First' instead. public ActionResult Details(int id) Line 27: { ...
3
votes
4answers
3k views

Linq To Entities - how to filter on child entities

I have entities Group and User. the Group entity has Users property which is a list of Users. User has a property named IsEnabled. I want to write a linq query that returns a list of Groups, which ...
6
votes
1answer
804 views

Entity framework result discrepancy for a database views

I have one specific view created in my DB(joins about 5-6 tables with a left join).This view is added to my edmx (entity framework 1.0) . Recently I noticed that one of the column records obtained ...
1
vote
1answer
92 views

Return column based on record in FK table

I have a success query for displaying Vendors, but what I wanted to add now is a column showing which vendors have been selected or not (displayed as a checkbox column). These selections are stored in ...
0
votes
1answer
199 views

When quering over a base type why does the EF provider generate all those UNION All clauses

If I have a model that looks like this: and I do a Linq to Entities query like this: var c = MyContext.Contact.Count(); I'll get a SQL query that is as big as all out doors! SELECT ...
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 ...
26
votes
12answers
15k 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 ...
13
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 ...
19
votes
5answers
9k 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
4answers
16k views

Calling user defined functions in Entity Framework 4

I have a user defined function in a SQL Server 2005 database which returns a bit. I would like to call this function via the Entity Framework. I have been searching around and haven't had much luck. ...

1 2 3 4 5 9