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)

0
votes
1answer
12 views

How do you do a SELECT nonExistentColumn in Entity Framework 5?

I have a query that does: SELECT "string", Field, Field2, etc. I want to mimic this in Entity Framework so that it can go along with the results of a query: LINQ... select new { "STRING", ...
0
votes
0answers
27 views

How do I convert a SQL query to a LINQ to Entities Query?

SQL Query: SELECT 'ETS' AS dataSource, ES.ShowId, ES.Title, EE.EpisodeId, EE.Title AS EpisodeTitle, ELG.GenreDescription AS Genre, ELST.ShowTypeDescription, ...
13
votes
1answer
10k views

Method cannot be translated into a store expression

I saw this code work with LINQ to SQL but when I use Entity Framework, it throws this error: LINQ to Entities does not recognize the method ...
3
votes
2answers
5k views

Method GetPrice() cannot be translated into a store expression

I have a class method: public static class ProductExtensions { public static decimal GetPrice(this Product product, Guid rateId) { return product.Prices .Where(p => ...
4
votes
2answers
10k views

Select clause containing non-EF method calls

I'm having trouble building an Entity Framework LINQ query whose select clause contains method calls to non-EF objects. The code below is part of an app used to transform data from one DBMS into a ...
0
votes
1answer
2k views

Not recognize the method 'System.String ToString()' method, and this method cannot be translated into a store expression

I have looked at all the examples related to this but have not been able to solve my issue. I am creating a dropdownlist in asp .net mvc3. I have a repository which returns: public ...
2
votes
1answer
73 views

Executing Expression ToLower on List throws exception

I have the below code: public Expression FilterString(string property, string value, ParameterExpression parameter) { //Create Message MemberExpression from parameter and properted ...
0
votes
0answers
20 views

Error: Multiplicity Constraint Violated on db.SaveChanges?

I a am new to entity framework. I have created project with Entity Model. When i am trying to add item in to the table it gives error "Multiplicity Constraint violated" Any idea? ID From Table MAPPER ...
1
vote
3answers
60 views

Ignoring Empty strings when searching with LINQ-to-Entities

When I run this code, I am checking that before I add a new record, there isn't already an existing one that matches the Bank account number, the VAT number or the Paypal email address... But, if ...
0
votes
1answer
35 views

Entity Framework: View exclusion without primary key

I am using SQL Server where I have designed a view to sum the results of two tables and I want the output to be a single table with the results. My query simplified is something like: SELECT ...
5
votes
1answer
2k views

'IN' & 'NOT IN' in Linq query

hi i have tested following query in linqpad and it runs fine, but VS2010 doesn't like it var topJobs = from j in streetlightDBEntities.Job let mjobid = from m in ...
0
votes
1answer
56 views

Automapper mapping Enum to Class

I get the generic error of 'Missing type map configuration or unsupported mapping.' when I try to create this map. Any ideas? Mapper.CreateMap<MyEnum, MyClass>().ConvertUsing(c => ...
0
votes
1answer
99 views

Troublesome LINQ query/join

Ok I'm not even sure where to begin on this. I have four main tables. IPACS_Departments (one to many) -> IPACS_Functions (one to many) -> IPACS_Processes (one to many) -> IPACS_Procedures I have an ...
0
votes
1answer
23 views

How to execute a raw sql query from LINQ to Entities 4.5?

Problem I need to execute a raw SQL query from LINQ to Entities and retrieve the result. The query returns the current date/time from the SQL Server instance, and looks like this: SELECT GETDATE() ...
-1
votes
1answer
10 views

cast to value type 'Int64' failed because the materialized value is null error in Linq left join

While using Linq I am getting follwoing error The cast to value type 'Int64' failed because the materialized value is null. Either the result type's generic parameter or the query must use a nullable ...
0
votes
0answers
51 views

Converting a Store Procedure into LINQ

In my ASP.NET MVC project, I'm trying to move an old Store Procedure(SP) to my business layer using LINQ. I've got the tables Audit, AuditAction and CorrectiveAction. 1 Audit has N AuditActions and 1 ...
4
votes
1answer
89 views

OUTER APPLY in .net 4.5 and Entity Framework

After installing the .Net 4.5, there were problems in queries generated by EF. The same query in linq to .Net 4.0 works correctly. I'm using Firebird database and it does not support command OUTER ...
0
votes
0answers
12 views

What is the standard load Data in Silver Light by Linq

Did you know that the data is required to show by "Silver Light 5.0" Linq code dim ds as new domainService ds.load(ds.GetQueryName) like this to load it. I want to know whether the job should be ...
53
votes
5answers
29k 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); ...
1
vote
3answers
20 views

Return single entity selected by ID from a Service using Repository pattern

I'm working on ASP.NET MVC3 application. I want to make a method in my service that will return only the entity with the id that I provide from the place I call the method. In my service which is ...
1
vote
3answers
83 views

C# Linq Join not equal

I am trying to create a linq join for a game that will select all the positions a player does not play in using the following query: var m_player_positions = from pl in tfs.Players ...
0
votes
1answer
27 views

Linq to Entities error

In MVVM, i am getting an entity set from the repository to viewmodel. While trying to access the elements of the entity, it throws an exception: LINQ to Entities does not recognize the method ...
0
votes
2answers
25 views

Entity Framework : map duplicate tables to single entity at runtime?

I have a legacy database with a particular table -- I will call it ItemTable -- that can have billions of rows of data. To overcome database restrictions, we have decided to split the table into ...
0
votes
1answer
31 views

Add an aditional property when quering database using Linq to Entities

So I'm using Repository pattern to take all record from the database : var rows = DocumentsRepository.All(); However I want to add one additional property. Documents table has column Date of type ...
0
votes
2answers
55 views

how to implement Linq to Entities IQueriable TakeWhile() functionality

Today while working with LINQ, I leanrnt that TakeWhile() is not supported for LINQ to entities, is there any efficient way to implement such a functionality? The use case I have is as below - I ...
0
votes
1answer
41 views

Set time to zeroes in LINQ-to-Entities query which includes datetime column

I'm not sure if it's possible but I've been trying for half a day to use only date for filtering records in MS SQL database and I get to this question. I'm using Repository pattern so I get all ...
0
votes
1answer
91 views

how to calculate in select statement

Work on C# linq entity framework 4. Want to avoid foreach loop from my bellow syntax .Is it capable to calculate foreach loop calculation in select statement? var result = (from p in MasterDetail ...
6
votes
7answers
3k views

Linq-to-Entities Left JOIN

This is my query: from forum in Forums join post in Posts on forum equals post.Forum into postGroup from p in postGroup where p.ParentPostID==0 select new { ...
1
vote
0answers
38 views

linq and parallelism - SQL Server

I'm encountering an issue with LINQ To Entities. If I run my LINQ query then it use Parallelism (Gather Streams and Reparation Stream) in the execution plan which causes lots of CXPACKET waits. But ...
1
vote
0answers
13 views

Linq to Entities - is count() clever enough to send a group by clause to the DB

This is surprisingly difficult to find, and as I am an amateur using express edition of VS, I don't believe I can see the SQL being sent to the DB (although happy to be corrected). If I want the ...
20
votes
10answers
19k 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 ...
3
votes
3answers
3k views

Could not find Control in ControlParameter inside EditItemTemplate

I am working on a Dynamic Data website and I have run into a wall. I have a Details page where the details for each employee can be seen, and then I have a separate page to edit each employee. I did ...
3
votes
2answers
2k views

How do you add a primary key to a sql view? - Or alternate way to link views to LINQ-2-Entities

I'm adding a very simple view (or trying to) to my entities object model. The database is in SQL Server 2008. I'm on .Net 3.5 (SP1) using C#. The view has two fields: color and colorcount, a ...
0
votes
1answer
25 views

LINQ - loading data from tables with circular references

I have the below tables where the StationAvailableMoves.StationID and StationAvailableMoves.AvailableNextStationID both have relationships on the Station.ID column. I am using this to control a ...
1
vote
2answers
24 views

Get only some properties from an entity using Repository pattern and LINQ2Entities

I know it's pretty standard stuff but right know the solution escapes me. I have entity Documents. In my service I can call DocumentsRepository.All() and then use only what I need but I don't want to ...
0
votes
0answers
11 views

Fast native SQL, but slow LINQ-to-SQL

See the following simple queries: var stringList = db.A.Where(a => IsTrue == true).Select(a => a.string); foreach string in stringList: var c1 = db.ExecuteQuery<int>("SELECT COUNT(*) ...
2
votes
2answers
28 views

LINQ to Entities using the SQL LIKE operator

I have this: query = query.Where(s => s.ShowTypeDescription == showTypeDescription); several times for different variables in order to build dynamic SQL. How would I go about transforming the ...
2
votes
2answers
46 views

LINQ Left Outer Join with conditions

I have the below tables that are coming from my SQL Database with Entity Framework 5. What I want to do is select all users where tblUserBusiness.BUID equals a passed in value OR where the ...
18
votes
5answers
7k views

'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported

I am trying to execute the following code and am receiving an error public List<Log> GetLoggingData(DateTime LogDate, string title) { var context = new LoggingEntities(); ...
2
votes
3answers
866 views

The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties

Using this code in Entity Framework I receive the following error. I need to get all the rows for a specific date, DateTimeStart is of type DataType in this format 2013-01-30 12:00:00.000 Any idea? ...
2
votes
1answer
39 views

How to efficiently build a “Get descendants” algorithm in linq-to-entities?

In a tree like the one below where each item knows only its parent id and order number, what would be a good way to query all descendants of Foo? 1: Foo 2: Child 3: Grandchild 1 4: Grandchild 2 ...
0
votes
3answers
1k views

Linq left join with multiple columns and default values [duplicate]

I am fairly new to linq and I need to join two tables with the following requirements: Should left join t1 and t2. If t2 is empty then the query should not fail - should use default values. My ...
1
vote
2answers
1k views

Property was not found on the entity during an insert, update, or delete operation?

I have a GridView that is tied to an EntityDataSource. Most columns are normal bound columns, but two are itemtemplates. When I attempt a delete on one of the rows I receive the following message: ...
3
votes
2answers
2k views

The specified type member is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported

var result = (from bd in context.tblBasicDetails from pd in context.tblPersonalDetails.Where(x => x.UserId == bd.UserId).DefaultIfEmpty() from opd in context.tblOtherPersonalDetails.Where(x ...
0
votes
3answers
34 views

How do I do a multi-join on two SQL Views in an Entity Framework Model?

I have two views in my model. I basically need to do an INNER JOIN on them based on three columns: dataSource ShowID EpisodeID The first thing I don't know how to do is add the SQL "AND" ...
0
votes
0answers
19 views

Add/Edit/Delete/Select - for Relationship Table In Entity Framework

I'm trying to implement a proof of concept about how many to many relationship works with entity framework (i'm using EF 5) : Here is my code first models & configuration (I've not explained ...
9
votes
5answers
1k 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 == ...
0
votes
1answer
27 views

Using an array of enumeration values in a where clause with Entity Framework 5

I'm using EF 5. My Entity has an property called Status which is an enum of type MyEntityStatus. I need to do a query where I return all entities that have any of a list of statuses. My basic code ...
0
votes
1answer
33 views

Deserialize a JSON array that contains an array?

When I try to deserialize the following with the .NET JavaScriptDeserializer, I get the error message: Type 'People' is not supported for deserialization of an array When I use JSON.NET like ...
0
votes
1answer
54 views

Linq-To-Entities and query with dates

I am using the Fullcalendar jquery plugin to show events on a calendar view in my MVC 4 application. I have configured the plugin which is correctly calling my controller action passing in two double ...

1 2 3 4 5 77