Tagged Questions
0
votes
0answers
72 views
Why is it that Entity Framework gives the error “Enumeration yielded no results” for typical many-to-many functionality?
Our ASP.NET C# web application is used in the following environment .NET Framework 4
ASP.NET Web Forms.
IIS 7
Windows 2008
Visual Studio 2010
.NET IDE C#
HTTPS ( SSL )
-Entity Framework 5
In ...
0
votes
1answer
78 views
Where or (not and) with list of expressions c#
I got the following code
public class Personnel {
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int ...
0
votes
1answer
44 views
Build LambdaExpression with custom parameter selection
Complete definition of my extension method goes first.
static IQueryable<TResult> WithTicketNumbers<T, TResult>(
this IQueryable<T> q,
Expression<Func<T, ...
0
votes
3answers
243 views
Composing Expression<Func<T, bool>> predicates
I have a method that returns an
Expression<Func<T, bool>>
When I use this as a predicate in a where clause in EF this works fine, until I try to add more items to the predicate with ...
0
votes
2answers
176 views
c# translate SQL to lambda expression to get IQueryable
would be grate if someone could help me to translate this into lambda expression or something like.
firstly introduction:
are two tables/objects:
OFFICE
{officeID,
NAME,
another data}
WORKER
...
1
vote
1answer
39 views
How can I change my method to achive the following?
I have this method that is supposed to search collection of Employees by names.
I pass the array of last names I want to find, and the method returns Employees with these names. Simple.
public ...
0
votes
0answers
179 views
How to create filter expression dynamically in EF IQueryable?
Lets say we have interface:
public interface ISystemCompany
{
Guid SystemCompanyId { get; set; }
}
We also have IQueryable<> of type, that implements ISystemCompany.
We have specific ...
0
votes
2answers
151 views
Convert/Embed one expression tree into another
EDIT: More detailed question.
I am working on batched operations in nHibernate, specifically for In queries to overcome the 2100 parameter limit size in SQL Server.
For this, I have created a class ...
2
votes
2answers
177 views
Why is a temporary variable required in foreach to be included in lambda expression?
I was reading C# 4 in a Nutshell and I've come to this piece of code:
IQueryable<Product> SearchProducts (params string[] keywords)
{
IQueryable<Product> query = dataContext.Products;
...
1
vote
5answers
149 views
IQuerable return type question with Lambda statements
i am facing problem with the return type for this function and not really getting anywhere near solving can someone help me with this?
here goes the function,
public ...
5
votes
4answers
529 views
need help converting C# foreach loop to lambda
Can the following loop be implemented using IQueryable, IEnumerable or lambda expressions with linq
private bool functionName(int r, int c)
{
foreach (S s in sList)
{
if (s.L.R == r ...
8
votes
3answers
242 views
C# strange lambda behavior
Could someone point out why this could be happening:
I am using NHibernate and the Linq provider for it.
The code that fails is listed here:
var sequence = session.Query<T>();
var ...
1
vote
2answers
96 views
Creating a queryable property for a linq to sql entity
I have a simple table structure in SQL Server:
One table storing a list of Bikes (Bikes) and a second table storing a historical list of the bike's owners (Owners).
Using Linq 2 SQL I generated a ...
3
votes
3answers
2k views
IQueryable Lambda Projection Syntax
I have an IQueryable whose Entity Framework 4 objects I would like to project to their DTO equivalents. One such object 'Person' is an EF4 class, and the corresponding POCO PersonP is a class I've ...
0
votes
1answer
210 views
How to make IQueryable<out T> work with a reqular IQueryable?
I am using Linq2SQL and working with a legacy system. The system was built in .Net but without a datalayer so I am transcoding it so that it will have one. I have a linq query that looks like ...
0
votes
1answer
1k views
Applying like filter to an IQueryable
I'm trying to write a custom filter for Dynamic data that will allow me to run like type queries on entity columns. For example searching for john on name field to returen johnson, johns etc.
I'm ...
1
vote
3answers
1k views
What is actually happening with IQueryable.Where()?
This is is returning a boolean based on whether or not there are some matching IDs.
from t in getAll
select new Result
{
...
bool DetailsAvailable =
...
4
votes
1answer
3k views
Create fully dynamic where clause with expression tree and execute on IQueryable
At point (3) in my code I have defined a query called query1 in which I defined a .Where lambda expression. This query is in some way dynamic but still contains static elements, it always refers to ...
1
vote
3answers
3k views
iQueryable and Expression Tree [closed]
Can anybody explain me how to use (1) iQueryable (2) Expression Tree in C# by providing a very basic example? Both are not correlated, instead of making two separate questions, I wish to clear my ...
11
votes
1answer
3k views
C#, Linq2Sql: Is it possible to concatenate two queryables into one?
I have one queryable where I have used various Where and WhereBetween statements to narrow the collection down to a certain set. Now I need to add kind of a Where || WhereBetween. In other words, I ...