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)

2
votes
2answers
102 views

Translating SQL to lambda with groupby

I'm trying to translate this sql statement SELECT row, SUM(value) as VarSum, AVG(value) as VarAve, COUNT(value) as TotalCount FROM MDNumeric WHERE collectionid = 6 and varname in ('C3INEV1', ...
1
vote
2answers
49 views

Merge column values of different types in linq query

Here is how I can return result of merging two string columns: context.DBSET.Select(e => e.STRING_PROPERTY + e.STRING_PROPERTY)... How can I merge e.STRING_PROPERTY + e.INTEGER_PROPERTY in ...
3
votes
1answer
116 views

How does this work? LINQ to Entities triggers loading of assemblies?

Projects in solution I have a typical 3-tier solution that targets .NET 4.5 and uses Entity Framework 6 Alpha 3. The solution is made up of three projects, let's call them: Entities - class library ...
-1
votes
1answer
126 views

Linq to Entities group by week number

I am using ASP.NET v4.5 and linq to entities I am trying to group my data by week using the below code var groupedByWeek = salesOrdersList .GroupBy(i => ...
0
votes
0answers
27 views

Why does LINQ to entities generate order by for every property?

I have a LINQ to Entities (4.3) query which returns an IQueryable of ProductWithSkus: public class ProductWithSkus { public Product Product { get; set; } public IEnumerable<Sku> Skus { ...
0
votes
0answers
34 views

Linq to Entities TargetInvocationException exception

On a very simple Linq to Entities query I just keep getting this exception: An exception of type 'System.Reflection.TargetInvocationException' occurred in System.Data.Entity.dll but was not ...
0
votes
2answers
31 views

Which defensive check is preferable when querying data using the Entity Framework?

Which of the following defensive checks is preferable when querying data using the Entity Framework? 1. The null check: user = users.SingleOrDefault(u => u.Email.Equals(email)); if(user == null) ...
0
votes
1answer
58 views

Linq to Entities query with array of WHERE conditions

How can I create an efficient Linq-to-Entities query when I have an array of parameters in a WHERE clause with OR condition? The array length can be anything. For example: from employees -> return ...
3
votes
3answers
89 views

Best way to check if value exists for a key in ILookup<string, string> using linq

ILookup<string, string> someList; Cricket Sachin Dravid Dhoni Football Beckham Ronaldo ...
0
votes
1answer
61 views

Using Linq to select table items where they match a list

I have a dictionary of 'string, DeviceInfo' where DeviceInfo is a class containing a few properties as shown below: public string Name { get; set; } public string Id { get; set; } public ...
0
votes
1answer
49 views

Linq to Entities nested subqueries

I am fairly new to linq and am having a problem translating the following sql to linq: select c3.COURSE, c3.DESCR from (select c.courseprefix, MAX(c.coursesuffix) [coursesuffix] from ...
0
votes
2answers
36 views

How to write some LINQ which excludes related records in a link table?

I have 2 tables Client ClientReport I need to write some LINQ that lists all Clients that are not in the ClientReport table ie I need to list all Clients not associated with a particular report. ...
0
votes
1answer
181 views

How to query with Linq to Entities with a group by and two counts

I need help with a query. I want to return a list of entities and for each entities, I need two counts. With entities generated from thoses tables : /****** Objet : Table [dbo].[Messages] ...
2
votes
1answer
91 views

More efficient way of loading children of entity objects in linq to entity query

I have a rather complex linq to entity query that I'm performing, in the end, I have a result set. I loop through that result set, build business objects and return that list of business objects. it's ...
1
vote
1answer
45 views

How do I call a method from within a linq query that is retrieving from an Entity Framework model

I have the following code return (_entities.Users.Select(profile => new ProfileUserListItemDto { Email = profile.Email, FirstName = ...
0
votes
3answers
72 views

LINQ to Entity join query

I have the following setup: Table ShoeAreas that has columns ShoeId and MaterialId. Table Shoes that has columns ID and Status. I have a method that takes one argument - materialId and the goal is ...
1
vote
2answers
37 views

Why do I have do assign subquery to a variable outside of my main query

In the GetTransfers() method below I have to assign the result of GetAllocations() to a variable outside of my main query otherwise the query fails. Why do I have to do that? Is there a better way? ...
1
vote
3answers
67 views

How do I use LINQ to filter AND manipulate results based on values intersecting between a child and comparer?

Thanks for looking! Background I am writing in C# and using LINQ to query entities for a report. In this report, I have a set of entities that basically look like this: Customer{ Name: ...
1
vote
1answer
169 views

LINQ using dictionary in where clause

er have the following query in linq... Whenever I try to run it I get a No comparison operator for type System.Int[] exception. It's got something to do with the dictionary I am sure, but I don't ...
6
votes
2answers
142 views

How to abstract a field in the Select list of a Linq query?

I have a certain calculated field that I regularly want to return in the "select" fields of a Linq query, e.g. Customer order total this year, along with other demographic info of the Customer. ...
0
votes
1answer
64 views

asp.net MVC3 LINQ expression

I have used to create a custom role provider. My Project - asp.net MVC3, Entity Framework 4 There is a problem with the GetRolesForUser method. Custom RoleProvider - GetRolesForUser Method // ...
0
votes
0answers
6 views

how to load the child entity of a collection?

I have an Entity Framework 5 data model that looks like this: CategoryValues --< ProfessionCategoryValues >-- Professions which provides a many-to-many relationship between CategoryValues and ...
1
vote
2answers
68 views

Converting LINQ Extension method to work with L2E

I am working on a search page where users are able to use wildcards * in their search criteria. The wildcard can be placed at the beginning, or end of a string. Since there are several fields I need ...
1
vote
1answer
53 views

How to write this LINQ/EF query?

So I have an Entity Framework 5 model that includes a many-to-many relationship. CategoryValues --< CourseCategoryValues >-- Courses I have a LINQ query that selects every Course in the ...
3
votes
3answers
260 views

Linq to Entity Join table with multiple OR conditions

I need to write a Linq-Entity state that can get the below SQL query SELECT RR.OrderId FROM dbo.TableOne RR JOIN dbo.TableTwo M ON RR.OrderedProductId = M.ProductID OR RR.SoldProductId= ...
0
votes
0answers
61 views

How best to implement role hierarchy with LINQ to Entites?

I have a roles table in my SQL Server 2008 database with different roles for content users of a website (e.g. Admin, Director, Manager, ..., Basic User). Using LINQ to Entities I need to retrieve ...
2
votes
1answer
34 views

Select sub-sub-items of an object

being new to linq and Entity Framework this kind of puzzles me: I created a model (of a tiny section) of my database through Entity Framework, with three tables in two straight-down 1:n relations: ...
1
vote
2answers
144 views

Linq - list within object not saving on db.SaveChanges() call

I am having problems saving the following to a database. I have a list of branches as part of a MessageType object. I update the list of branches in the 1st section of code then save the list of ...
1
vote
2answers
94 views

Display the lastest entry from Detail Table- using Linq to entities

I have a Datagrid as Master Table and a Pie-Chart for Detail's display. I have a list of Servers with their ServerID's in the Master Table like this- and my Details table is I would like to ...
2
votes
1answer
101 views

Linq to EF system not supported exception System.NotSupportedException

Scratching my head over this Linq query. It's Entity Framework. The query does transformation into different model objects. If I comment or remove the areas of the code that I have indicated as ...
2
votes
1answer
105 views

Linq to entities query with nested query on the same table

I have a SQL query: SELECT distinct A.stock_value_site, A.BALANCE_QUANTITY, A.BALANCE_NOMINAL_VALUE, A.BALANCE_INDEXED_VALUE, ...
0
votes
2answers
76 views

Trying to print the first 250 characters of a string but getting ArgumentOutOfRangeExecption" error

I am binding a LINQ result to a ListView and trying to print only the first 250 characters from the "Synopsis" column but when I try to use Substring I get the error: ...
1
vote
2answers
146 views

LINQ cast int64 issue

I need this linq query to work but linq is complaining about customercontact and phone being int64s and I also need to concat the second column but I'm afraid that isn't working for the same reason. ...
3
votes
2answers
71 views

Simplest approach to a dynamic where clause

I'm hitting information overload when it comes to generating dynamic where clauses in EF. Some of the solutions look to be very dated (I'm targeting .NET 4.5 with EF 5). Here's what I have: public ...
1
vote
1answer
37 views

How to prepend spaces in LINQ to Entities queries

In linq-to-entities queries, how spaces be prepended to shorter-length values when querying against an nvarchar column? I seek this capability to facilitate proper sorting of certain fields. Here is ...
3
votes
1answer
75 views

What would be a reasonably fast way to code this sql query in c#?

I have this SQL query: select sum(h.nbHeures) from Heures h join HeuresProjets hp on h.HpGuid=hp.HPId join ActivityCodes ac on h.Code=ac.ActivityId join MainDoeuvre mdo on ...
1
vote
1answer
78 views

Aggregate objects using LINQ

I have SQL query to get count of blocks, grouping by block name var sql = @"select count(*) [COUNT], o.NAME from WISH w left join objects o on o.ID = w.[BLOCKID] ...
1
vote
2answers
252 views

Linq To Entities Compare Value Against List<int>

I am using Entity Framework 5.0, and I have a problem with a LINQ query. I have the following method that accepts an integer value which is then passed into the query. This works fine. public ...
0
votes
0answers
103 views

LINQ to Entities returning incorrect results for tables without primary key

I have found that LINQ to Entities needs a primary key on the table in order to return correct results. Without it, I get the expected number of rows but including duplicates (and accordingly, missed ...
3
votes
1answer
89 views

Boolean LINQ Issue

I have a field in my database table called IsActive that can either be True or False. When I query the database, though, it also returns the inactive rows: This is my LINQ Query: var j = from x in ...
3
votes
2answers
109 views

LINQ to Entities does not recognize the method and this method cannot be translated into a store expression

I call some date in my database using entity frame work. but My below code giving this error LINQ to Entities does not recognize the method 'SchoolBreifcase.Compliance get_Item(Int32)' method, and ...
0
votes
1answer
125 views

Unable to get data from WCF service using entity framework

I am using a web application where user pass one argument to the service and it will return string datatype which is query result. In the service i am using Entity Framework to query based on the user ...
1
vote
1answer
156 views

Serialize via DataContract to an XML Writer

I am fairly new to .NET, but have been working on this project for sometime now with very little progress and with the amount of classes it's becoming a bit overwhelming. OBJECTIVE: Generate data ...
0
votes
0answers
56 views

Modeling and using many-many-many relation via Entity Framework

I have a many-many-many relation that I'd like to make usable from Entity Framework code. Only primary keys are shown. ObservationGrouping currently has a 'natural' three-part composite primary ...
2
votes
1answer
52 views

How do you manually construct a lambda expression?

I'm designing an application using ASP.NET Web API and Entity Framework 5 and LINQ to Entities. The Web API doesn't serve up the entities directly, it converts them to a set of data transfer objects ...
0
votes
0answers
51 views

Should FirstOrDefault(lambda) and Where(lambda).FirstOrDefault() work the same?

I was under the impression FirstOrDefault(lambda) had the same effect on a collection as Where(lambda).FirstOrDefault() in LINQ to EF. Then I found this issue in code to find the most recently ...
2
votes
1answer
164 views

Linq include children from collection

Using the include method does not include the children of a collection. var abuseCaseQuery = from @event in context.AbuseEvents.Include("AbuseCase.AbuseCaseStatus.Status") select new { ...
0
votes
0answers
43 views

How to execute custom function with LINQ to Entites

I have added my function that I have created with SQL to Entity Framework 4 in the SSDL section as suggested by these posts. <Function Name="fGETSKU" ReturnType="int" Aggregate="false" ...
2
votes
2answers
45 views

FirstOrDefault two ways

I can not understand the difference between these two ways of setting FirstOrDefault: Product a = (from r in _context.Products where r.IDPROD.Equals(10) select r).FirstOrDefault(); Product a = (from ...
0
votes
1answer
36 views

Best Way to convert one Edmx Entity to one Business entity

I am developing one application in which data is access from edmx entities and from that we have to fill each business entity after retriving data from edmx entity like:- var tblproducts = ...

1 3 4 5 6 7 77