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.
2
votes
2answers
49 views
LINQ to Entities does not recognize ToArray
I'm trying to write a query that will project to a DTO where two of the properties are int arrays. I'm getting an error because of the ToArray() call in the projection.
teams = context
.Teams
...
0
votes
1answer
27 views
Result consisted of more than one row when executing linq query against mysql database?
When I run the following query in VS2008 with EF 3.5, I get the error:
Result consisted of more than one row
var drivers = _context.Persons
.Where(x => x.client == ...
1
vote
3answers
51 views
Using DateTime in LINQ to Entities
I have a PostgreSQL database that interacts with the program through Entity Framework Code First.
Database contains a table "users" that has column "visit" type of DateTime.
The application is ...
0
votes
1answer
36 views
Convert SQL with groupBy sub query to LINQ query
Please could somebody assist me in an example of the following SQL into a LINQ query in C#, I am using .NET 4.0.
SELECT x.*
FROM [eBookAddict].[dbo].[UrlRecord] x
JOIN ...
0
votes
1answer
35 views
Convert Select/Count SQL Command to Linq to Entities
I have a problem with regards on count command using Linq to entities.
What I want to do is to count all the gender with the civilstatus of my employee.
civilstatus 0 - all ; 1 = single ; 2 - married
...
0
votes
1answer
17 views
Linq to Entities: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value
I have the following snippet that generates the error, I assume this is a result of the ConditionRatingList not having any values. Does anyone have any suggestions on how to rectify this within the ...
0
votes
2answers
55 views
Left Outer Join using Entity Framework and Lambda Expressions
Employee
id, name, datejoin, deptID
and another table that is
Marketing
id, name, deptID
What I am trying to do is search of deptID from Employee table in Marketing to see if it exists,
if it ...
0
votes
1answer
28 views
Unable to convert MySQL date/time value to System.DateTime with LINQ Where?
I have the statement:
var persons = _context.Persons.AsExpandable()
.Where(predicate).ToList();
When I run the above, it gives me the error Unable to convert ...
-2
votes
4answers
61 views
Fetch distinct object from a collection using GroupBy on a single column in LINQ to Objects/SQL/Entity
I have a Database table Country with example data as follows:
CountryId CountryName Year
1 UK 2001
2 UK 2003
3 ...
4
votes
2answers
70 views
How do I join with OR condition?
This is my LINQ code:
from b in dbContext.SAPBillOfMaterials
from t in dbContext.AUXComponentTypes
where t.ParentId == b.Parent.Id &&
t.MaterialType == b.Component.MaterialType &&
...
0
votes
1answer
62 views
left join linq is not working
i have this linq query
var x = (from d in detalle
from n in nlj.DefaultIfEmpty()
join nd in nuevodetalle
on new { d.ope_idsku ,d.ope_tipo } equals new {nd.ope_idsku ,nd.ope_tipo }into nlj
from n in ...
0
votes
1answer
75 views
Binding recursive treeView
I'm developping a Windows Form application on Visual Sudio and this is the my first time with treeView. My project has a ADO .NET entity data model of and SQL database, I have 3 tables with relations:
...
0
votes
1answer
41 views
Only primitive types are supported in this context
I have the following extract of code and I get the above error. This is a really simple query and of course works perfectly in SQL. What am I missing?
public IEnumerable<PAYSHIST> ...
0
votes
1answer
34 views
InsertAllOnSubmit in LinqToEntities
What's the Method to InsertAllonSubmit in LinqToEntities.
I am getting a result using where condition from one table.
Now I need to Insert all records at a time into another table with out using ...
0
votes
3answers
87 views
How to convert SqlDataReader to LINQ way?
I wonder how to convert SqlDataReader to LINQ way?
Here is my SqlDataReader code.
string strConn = "server=xxx.com;database=mydb;User ID=test;Password=test;Trusted_Connection=true;";
SqlConnection ...
0
votes
1answer
22 views
Only primitive types or enumeration types are supported in this context (in Linq Contains method)
I have a linq to entities query that I am having trouble with.
var query = (from q in dc.Table1
where (from a in dc.Table2 select a.TypeID).Contains(q.TypeID)
select ...
0
votes
2answers
34 views
Entity Framework piece together LINQ to Entity Queries
I need some help here. I am trying to make a portion of an EF Query reusable.
var query = from sr in SomeEFRepository.SelectAll()
select new {
KeyValuePivotField1 = (from ...
1
vote
0answers
35 views
How can I make my Dynamic Linq query more efficient
I've written an mvc controller function to handle dynamic queries, it's working great but with some more complicated queries it's really bogging down as much as 15 second response time. I used ...
0
votes
1answer
21 views
Generating lambda expression - Type conversion Error
I have a generic method that filters a list of entities, filtering is done by generating lambda expressions:
protected object initFilters<TEntity>(string targetEntity, List<SearchItem> ...
2
votes
2answers
61 views
Entity Framework - “where” clause: entity id is in a potentially null array
I have an array of office ids, and the array is potentially null. I want the EF query to return all records if the officeIdsToSelect array is null, or only the matching records if it is not null.
...
1
vote
1answer
53 views
Entity framwork mutiple object relation
I have a table with 2 foreignkeys to the same parent table, Edge.StartStationId and Edge.EndStationId.
I am trying to map theese to objets in entity framework, but can't find a workaround which seems ...
0
votes
2answers
32 views
Convert SQL to LINQ to Entities WHERE IN clause
How can I convert this sql statetment to LINQ to Entities?
SQL Statement:
Select * from Departments where DepartmentID in (Select DepartmentID from Employees where FirstName like '%FirstName%' or ...
0
votes
2answers
56 views
How to cast back an object with a linq query inside it with more than 1 entity? [duplicate]
I have the following scenary, one linq query with a join statment:
public Object getMGM(int MEB_Id)
{
var unitOfWork = new ...
-1
votes
0answers
33 views
Supporting Multiple SQL database versions for same application [closed]
I am in need to develop an application which can support multiple version of same SQL Server database. Database has been changing and it has currently 7 versions.
Some of customers still using ...
1
vote
2answers
53 views
Using ToString() in LINQ queries?
I have writting a LINQ query to fill a listview but it useses the .ToString() method which apparetly is not allowed. When I use the below code I get the error message:
Error: LINQ to Entities does ...
0
votes
2answers
51 views
LINQ where db table does not contain in memory list elements
I have seen these StackOverflow Answers but they do not produce the same results when the filtering list is in memory.
I have a list of Ids. I want to remove any IDs that exists in the database, so ...
0
votes
3answers
46 views
Combining 2 linq queries - group and join
I have 2 separate tables in my Db for Customers and their related Ethnicity. The customers table holds foreign key Id for the ethnicity. I would like to create a Linq query that shows the total of ...
4
votes
1answer
122 views
What's the better way to write this linq query?
SQL:
SELECT node.CategoryId,
node.CategoryName,
node.Description,
node.Lft, node.Rgt,
node.ShowOnMenu,
(COUNT(parent.CategoryName) - 1) AS Level,
(CASE WHEN node.Lft = ...
0
votes
1answer
24 views
Linq to Entity - Inserting a record
I am new to Linq to Entity (Infact I am new to Linq) and I am struggling to insert a row.
Following a number of tutorials (None of which seem to agree with each other or are very detailed) I managed ...
1
vote
2answers
59 views
Building a lambda expression using concatenation
Let's say I have these two entities :
Document, which contains a DateTime property (called Date).
Period, which contains two DateTime properties (called DateFrom and DateTo) that represents a period ...
0
votes
2answers
31 views
How to write this Query in LINQ
I have one LINQ query with foreach loop. Everything is fine. But it takes more time to get the value. So anybody suggest me how can i do this in LINQ query itself.
Code
NormValue = "";
c = 0;
var ...
0
votes
1answer
29 views
Advanced linq expression with multiple joins
I have the follwing EF Entities :
Candidate
User (User)
CandidateId (Guid)
CandidateNumber (Integer)
User
UserId (Guid)
UserName (Guid)
Roles (Set)
Candidates (Set)
Role
RoleId (Guid)
...
0
votes
1answer
36 views
Create a query using LINQ to entities with 1:N relation
I know it's not something unusual to make such kind of queries but I think I get lost so I seek help. I have to tables with relation 1:N and to make it more clear I'll post a print screen from the ...
4
votes
3answers
116 views
Building a custom predicate to act as a filter using a foreach loop
I need to filter a list of documents by passing them to a custom filter that I'm struggling to build dynamically using a foreach loop :
var mainPredicate = PredicateBuilder.True<Document>();
...
2
votes
1answer
76 views
Nesting PredicateBuilder predicates : 'The parameter 'f' was not bound in the specified LINQ to Entities query expression'
I am building predicates using LinqKit's PrediateBuilder class to dynamically setup filters and I want to combine a nested one to another.
I have read this ...
2
votes
1answer
31 views
Grouping/Subquery in LINQ to Entities with related ungrouped columns
I have this table in DB:
ID | Timestamp | Score
------|---------------------|-------------------
1 | 2013-01-01 12:00:00 | 15
1 | 2013-01-02 11:00:00 | 1
1 | 2013-01-03 ...
0
votes
1answer
70 views
SQL convert to LINQ to Entities
How do I convert this SQL statement to LINQ to Entities. I cant find a way to union the tables with WHERE clause
SQL:
Declare @DID int, @key varchar(50)
SET @DID = 3
SET @key = ''
SELECT TBL.GID, ...
0
votes
1answer
18 views
How would something similar to Telerik's WPF DataFilter Control work?
Telerik has the following control:
http://www.telerik.com/products/wpf/datafilter.aspx
Now this can apparently filter any collection. I haven't used it personally but I'm guessing you can create ...
-3
votes
0answers
47 views
Linq subquery returns a concat String
I need help with query of Linq. I have a query of Linq and any rows have a column of XX. XX is a indeterminate number of records of string concats.
Example:
From car in DataContext.CarTable
...
1
vote
1answer
26 views
Can't fill my model with a grouped list of a table using LINQ
I'm working on a new project using .NET MVC4 and Entity Framework. I have a products table and i'm trying to select products with grouping.
My model:
public class Cart
{
public long Index { ...
1
vote
1answer
35 views
How to set Arithabort on in Linq to Entities?
I've found tons of answers for how to set Arithabort on in Linq to SQL, but nothing in Linq to Entities. In Linq to SQL, you can do this:
using (var conn = new SqlConnection(connectionString)){
...
0
votes
2answers
105 views
Dynamic Queries: Change table name in LINQ-to-Entities query
Long time lurker, recent newcomer.
Been struggling a bit with queries with LINQ-to-Entities. I am using Visual Studio Express 2012 for Web and Entity Framework 4.0. Bear with me, it's a long ...
0
votes
1answer
22 views
Where Clause on Joined Table with Into Keyword
I wish to join two tables while filtering one of the tables. That works fine like
var matching = from a in ctx.A
join b in ctx.B on a.BId equals b.Id
where ...
0
votes
1answer
41 views
Why is Linq query setting my Arithabort options to false?
I have code like this:
using (var db = new MyDataContext()) {
db.ExecuteStoreCommand("Set Arithabort on");
var q = AFairlyComplexQuery(db); // returns an IQueryable<>
var result = ...
1
vote
1answer
32 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
1answer
22 views
MySQL Connector - LINQ to Entities does not recognize the method
in my [projest I'm using the MySQL Connector and Entity Framework. I have problem with the following code:
int now = DateTime.Now.DayOfYear;
var items = (from e in db.Table1
...
0
votes
0answers
35 views
Including child entity ADO.net EF, LinqToEntities
I'm trying to get all my child entities to get loaded in the same query as the "master" table, instead of every property loads one by one.
It's an ADO.net database model connected to SQL Server 2008.
...
1
vote
1answer
43 views
Unable to create a constant value of type 'ABC'. Only primitive types or enumeration types are supported in this context
I have a linq query in mvc4 application it gives me error
'Unable to create a constant value of type 'CMMIS.Domain.tblCustomer'.
Only primitive types or enumeration types are supported in this
...
0
votes
3answers
34 views
how to avoid the member assignment in LINQ orderby/groupby
I have a query to return a count based on a condition
var query = (from a in this.db.Servers
where (a.Date >= fromDP.SelectedDate.Value && a.Date <= toDP.SelectedDate.Value)
...
1
vote
2answers
64 views
How to display the following result in WPF chart
In my WPF application, I have a following query to display the selected date range as 'Date' and total number of servers being processed on each day as 'Amount'.
var query_1 =
(this.db.Servers
...



