Tagged Questions
0
votes
1answer
42 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
1answer
79 views
IEnumerable lambda expression for Where()
following code works on a collection of type IQueryable:
Expression<Func<Activity, bool>> filter = e => e.IsDeleted && e.CategoryId == 1;
But this expression doesn't work on ...
2
votes
2answers
581 views
Dynamic IQueryable order by using string [duplicate]
Possible Duplicate:
Dynamic LINQ OrderBy
I'm trying to create a dynamic sorting to Iqueryable.
So bellow you can see that I am following some examples I see here in stackoverflow.
var ...
0
votes
0answers
175 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 ...
5
votes
1answer
345 views
“No supported translation to SQL” after deserializing IQueryable expression
I'm working on creating a JsonConverter for JSON.NET that is capable of serializing and deserializing expressions (System.Linq.Expressions). I'm down to the last 5% or so of the work, and I'm having ...
4
votes
2answers
667 views
Convert Predicate<T> to Expression<Func<T, bool>>
Is possible to convert a Predicate<T> to Expression<Func<T, bool>> in some way?
I would like to use the next IQueryable function using the filters of the my ICollectionView:
public ...
3
votes
2answers
435 views
Does Cast<T> cause an IQueryable to evaluate in Linq-to-SQL? What are the restrictions on its use?
Does Cast cause an IQueryable to evaluate in Linq-to-SQL?
What are the restrictions on its use?
It seems like if I created an explicit conversion for a record to a domain object like:
...
4
votes
1answer
527 views
How to retrieve ordering information from IQueryable object?
Let's say, I have an instance of IQueryable. How can I found out by which parameters it was ordered?
Here is how OrderBy() method looks like (as a reference):
public static ...
3
votes
2answers
458 views
How do you transfer the execution of a Expression created by an IQueryable object to a IEnumerable?
In my code I'd like to make my repositories IQueryable. This way, the criteria for selection will be a linq expression tree.
Now if I want to mock my repository in theorie this is very easy : just ...