Tagged Questions
0
votes
2answers
47 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
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
97 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', ...
3
votes
2answers
62 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 ...
2
votes
1answer
44 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
1answer
174 views
Generate dynamic select lambda expressions
I am somewhat new to expression trees and I just don't quite understand some things.
What I need to do is send in a list of values and select the columns for an entity from those values. So I would ...
0
votes
1answer
81 views
How to achieve Full text Search in Linq (.net 4.0)
I have been struggling to get a possible way to achieve filtering my result sets on certain criterions one of them being Full Text Search. After skimming few blogs came to know Linq doesnt directly ...
0
votes
1answer
100 views
Simplest way to create a dynamic search to be applied on IQueryable
Consider the case of having a single table (called Car) with the following columns and the corresponding entity
string Make
string Model
string Owner
Now I want to create a search where the user ...
1
vote
1answer
26 views
BuildPredicate comparing two fields
I am trying to map comparisons between two fields, where previously I had only been doing field to Expression.Constant comparisons.
private static Expression<Func<TDomainModel, bool>> ...
0
votes
0answers
180 views
LINQ and the correct way to use DefaultIfEmpty()
I have the following LINQ, which I have just got working with the use of GroupJoin (Thanks to IronMan for previous help).
var devSum =
repository.Devices
.Where(dev => dev.Id == ...
3
votes
1answer
59 views
LINQ GroupBy throwing errors
var devSum = repository.Devices
.Where(dev => dev.Id == deviceId)
.Join(repository.ManagementGroups, device => device.ManagementGroupId, mGroup => ...
0
votes
2answers
90 views
Use Linq query to count grandchild elements that match conditions
I am trying to determine if the current user has voted on a ProjectDoc. This query gives me a value of 1. There is no value in the ProjectDocVote table that matches the UserID. The ...
0
votes
1answer
149 views
Lambda Expression to Group by 3 different Fields only when not null and count()
Here's the model I have.
public class Notification
{
public int NotificationID { get; set; }
public bool ReadStatus { get; set; }
public DateTime DateCreated { get; set; }
...
2
votes
1answer
638 views
Lamda Expression for LINQ Select Items
I have this code
var list = _db.Projects.Where(item => item.Loc =="IN").Select(p => new {id=p.Id, title=p.Title,pc=p.PostalCode });
Project table having lot of columns, i need to query ...
2
votes
1answer
276 views
Linq Expression building for Entity Framework involving complex object
I am using Entity Framework version 4. I need to compare a large (~1 million record) SQL Server table to a longish (~2000) array of complex objects returned from a web service. Five different ...
0
votes
1answer
232 views
How to construct a lambda for a custom sort for dbContext used in GridView on related tables
I have a GridView using model binding and strongly typed EF5 dbContext classes in a webforms app. The gridview is using the SelectMethod property to return classes from my EF5 model:
<asp:GridView ...
1
vote
1answer
139 views
How to Write LINQ to Entities Lambda and Concatenate Properties in SelectList
I wrote the following method to fill a DropDownList and it works. However I would like to write the proper LINQ Query using Lambda expression as the first parameter of the SelectList initializer ...
0
votes
2answers
66 views
Adding additional information to a list from a linq-to-entities query
I am trying to find a more efficient way to add additional information to a list from a query. For example, if I have a list of objects with the ObjectID and StringA set, I would like to query the ...
1
vote
4answers
158 views
Breaking LINQ to Entities into multiple parts
I had the following code
query = query.Where(device => GetDeviceDistanceFromGeocode(geocode, device) <= distanceMetres);
private static double GetDeviceDistanceFromGeocode(Geocode geocode, ...
4
votes
2answers
356 views
Why doesn't HasFlag() work in Linq to Entities?
I have a flag e.g.
[Flags]
public enum DaysOfTheWeek
{
Monday = 1,
Tuesday = 2,
Wednesday = 4,
Thursday = 8,
Friday = 16,
Saturday = 32,
Sunday = 64
}
If I want to use ...
1
vote
1answer
43 views
IDictionary error: LINQ to Entities does not recognize the method 'Boolean get_Item(System.String)' method,
I have this line of code in my WCF Entity Framework code
if (criteria.AccommodationTypes != null && criteria.AccommodationTypes.Count > 0)
result = result.Where(a => ...
0
votes
1answer
398 views
Entity Framework; Unable to create a constant value of type 'System.Collections.Generic.IList`1'
This has caused me no end of problems today. I have this simple query
var result =
DataContext.Accommodations.Where(a =>
(criteria.MinPrice == null || ...
1
vote
1answer
97 views
Exclude rows in Lambda Expression
I have this Linq-to-Entities expression
return
(from aa in DataContext.AccommodationAmenities
join a in DataContext.Amenities
on aa.AmenityId ...
3
votes
4answers
826 views
How to write LINQ query with column name as parameter still in a type safe way
I am seeking help on how to achieve this with LINQ in a type safe way.
I need to perform search on "Performance" table with many columns. Based on the criteria specified for search I need to pick ...
2
votes
1answer
73 views
EF sorting issue
Have problem with linq expressions.
I want to get from db some data ordered by datetime. Early there was sorting by string field.
Sorting expression (by string):
Expression<Func<Matter, ...
1
vote
2answers
152 views
Why does replacing the lambda in a IQueryable.Sum selector with a function which creates the lambda fail? (Error 1025)
I wanted to abstract a lambda function I have which sums up records in my DB based on their status. The problem is, when I run the generated lambda against LINQ to Entities, I get "Internal .NET ...
3
votes
3answers
100 views
Why does .Where() on an IQuerable return a different type based on whether a Lamba or Func<T,Tresult> are passed as parameters
In my Entity Framework Code First project I have a repository object which contains routes
public class EFRepository
{
...
public IQueryable<Route> Routes
{
get { return ...
-3
votes
1answer
64 views
Linq to … and Lambda Expressions
I have a big question that has been puzzling me for a long time and that I can't seem to get a straight answer for anywhere and I am sure that if someone can answer this with authority and with good ...
1
vote
2answers
560 views
Get common keys and common values of two dictionaries
Hi I have two dictionaries of next type:
SortedDictionary<string, ClusterPatternCommonMetadata> PatternMetaData { get; set; }
The ClusterPatternCommonMetadata object looks like:
int ...
0
votes
1answer
334 views
Linq to entities - Lambda - Concatenate strings
I would like to concatenate a string using lambda to compare that concatenated value against a certain condition.
Invoices = Invoices.Where(f => ((string)f.invoice_prefix + ...
1
vote
2answers
796 views
LINQ-To-Entity (The specified type member '' is not supported in LINQ to Entities)
I am having difficulty understanding this problem:
Here is the T-SQL query I need to implement using LINQ to Entities
select r.ReviewID, b.BusinessID, b.Name as BusinessName ,r.Description
from ...
5
votes
1answer
429 views
Include using Lambda expression
In a string based overload of Include we specify to include a collection and then a reference one level down simply by specifying relevant navigation properties in correct order:
...
3
votes
1answer
166 views
How do you divide a property with linq expression
imagine I got an entity:
MyEntity
{
...
Nullable<Int64> MyProperty
...
}
I would like to do something like this:
Ctx.MyEntity.Where(x=>x.MyProperty/16 == 10)
with Linq.Expression
So ...
2
votes
2answers
654 views
Linq vs Lambda-Expressions query execution and “1 AS [C1]” meening in executed query
I have the same query written in both LINQ and the Lambda-expressions way:
LINQ:
var str = (from userInfo in context.UserInfos
join user in context.Users on userInfo.UserId equals user.UserID
join ...
0
votes
1answer
752 views
Lambda Expression: How to select from two non-related tables with one query
Would you help me to re-write this query syntax with lambda expressions?
(From Entity.Apple a in db.Context.Apples
From Entity.Bikini b in db.Context.Bikinis
Where a.Id== 10
Where b.Id== 15
Select ...
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 && ...
1
vote
1answer
543 views
Expression Trees in Linq To Entities
I'm trying to make an extension method that takes in an expression that points to a property on an entity, and a constant string to compare it to using String.Contains, that first checks whether the ...
3
votes
1answer
115 views
could not resolve property (linq/lambda)
I am trying to use LINQ/LAMBDA access a property
List<Latest> latestBooks = DataContext.Session.Query<Book>().Where(x=> x.Enabled == "True" ).Select(x => new ...
3
votes
3answers
267 views
Why does this LINQ expression break my loop & conversion logic?
Background
ArticleService is a class that provides methods for front-end layers to facilitate business with the back-end.
Two of its base responsibilities are to convert ViewModels ...
2
votes
2answers
278 views
Filtering Entity Framework results on SQL Server
First up: we are not doing TPH (table per hierarchy), that would make this a lot simpler.
I have about 20 POCOs that all have similar properties in some cases. The similar properties I care about ...
0
votes
3answers
430 views
ASP.Net C# LINQ to Entities Lambda expression casting result
Get intellisense error on return statement:
Cannot implicitly convert type "system.Link.IQueryable to
Systems.Collections.Generic.IEnumerable
public IEnumerable<int> ...
2
votes
1answer
613 views
How to create C# LambdaExpression that returns anonymous type for SelectMany resultSelector
I'm building a dynamic query that can have n of Where method calls and n of SelectMany calls dependent upon user input. For example I may have:
var qZ = entityContext.TableA
...
2
votes
2answers
668 views
Converting LINQ to Entity stement with not contains into a Lambda expression
I have three entities as shown below.
Student { StudentID, Name, Age }
Parent { ParentID, Name, Age }
StudentParent { StudentParentID, StudentID, ParentID }
I need to get an IQueryable list of ...
4
votes
1answer
867 views
LINQ Join on multiple fields
What would be the equivalent of the following T-SQL query in L2E using Lambda expressions?
Select * from a INNER JOIN b on a.Foo = b.Foo OR a.Foo = b.Bar
I want to join a and b when a.Foo equal ...
9
votes
2answers
1k views
How to obtain ToTraceString for IQueryable.Count
I use ((ObjectQuery)IQueryable).ToTraceString() to obtain and tweak SQL code that is going to be executed by LINQ.
My problem is that unlike most IQueryable methods IQueryable.Count as defined like ...
3
votes
3answers
898 views
linq to entities, a where in where clause? (inner where)
I have a table with a one to many mapping to a table that has a many to many mapping to another table. I'd like to do the following:
var results = context.main_link_table
...
0
votes
3answers
914 views
Linq to Entities - Left outer join with Lambda expression
I have this query and I can't found out how to this in Lambda expression.
select * from NewsVersion nv
left outer join ChangeProcess cp on cp.DocumentId = nv.NewsId and cp.EndDate is null
where ...
1
vote
2answers
83 views
Selecting/Filtering nested collections in L2E
Consider 3 entities. Group, Box and Message. Each Group contains Boxes and each Box contains Messages.
what's the neatest way to retrieve Messages inside a Group with custom conditions in Linq To ...
0
votes
2answers
1k views
Linq to entities get first or last from 2million rows
I'm learning LINQ to Entities in C# .NET4.0 Winforms.
I have a MSSQL database table with over 2million rows, eventually more and I need to just pull back the first record or the last record in the ...
3
votes
2answers
569 views
Linq lambda join error
I have been following the book Pro ASP.net MVC 2 Framework, which I have found to be quite brilliant. But it's a real learning curve and now I'm stuck.
In the book you build something like the below, ...