Tagged Questions
6
votes
2answers
80 views
How do you get the properties, operators and values from an Expression<Func<T, bool>> predicate?
Is there any way to pull out the properties, the operator and matching value from an Expression<Func<T>,bool>? Given the following example:
var customers = GetCustomers();
var ...
5
votes
5answers
87 views
Linq to Objects ordering by arbitrary number of parameters
I have a list of Func defining an ordering:
var ordering = new List<Func<Person, IComparable>>
{ x => x.Surname, x => x.FirstName };
I can order the results with ...
5
votes
2answers
105 views
Is it safe to pass Linq and a .ToList(), .Single(), etc to another method as a func parameter?
I needed to wrap some Linq queries with some Retry Policy logic.
Is it safe to pass this:
return WithRetry<User>(() =>
dataContext.Users.Where(u => u.UserID == ...
4
votes
1answer
184 views
What is difference between System.Linq.Enumerable.WhereListIterator & System.Linq.Enumerable.WhereSelectListIterator?
What is difference between System.Linq.Enumerable.WhereListIterator & System.Linq.Enumerable.WhereSelectListIterator?
One difference I hav noticed is Type WhereListIterator reflects changes on ...
4
votes
6answers
213 views
C#: Func<> instead of methods?
This is a curiosity questions for you all in the know:
Is there any harm/downside to using a Func instead of a method? Simple example:
private static Func<int, int, DBContext, List<T>> ...
3
votes
3answers
96 views
Is this overusing extension methods?
I'm looking to make certain functions as generic as possible.
In my MVC applications I have to convert a number of complex IEnumerable objects to SelectLists for dropdown display etc.
At first I ...
3
votes
4answers
278 views
C# method accepting a predicate - does this look ok?
I'd like a method that has the following API:
//get all users with a role of admin
var users = myRepository.GetUsers(u => u.Role == Role.Admin);
Will something like this work?
IList<User> ...
1
vote
3answers
58 views
Dynamic Constructor using Lambda and Func<>
I have a multithreaded app that is creating a list of strings on a BlockingCollection queue, I want to take that list of strings and convert it to a collection of item objects in one or 2 steps
Is ...
1
vote
3answers
2k views
How to convert System.Linq.Enumerable.WhereListIterator<int> to List<int>?
In the below example, how can I easily convert eventScores to List<int> so that I can use it as a parameter for prettyPrint?
Console.WriteLine("Example of LINQ's Where:");
List<int> ...
0
votes
2answers
56 views
How to extract properties used in a Expression<Func<T, TResult>> query and test their value?
I need to create a function to evaluate queries for some rules before executing them. Here's the code:
public class DataInfo
{
public int A { get; set; }
public int B { get; set; }
public ...
0
votes
1answer
114 views
Is there a way to combine two linq expressions of a custom type (i.e. Expression(Of Func(Of MyClass, MyClass))
I have a list of properties and values that i'd like to use to dynamically build an Expression(Of Func(Of MyClass,MyClass))
I can run through the list and create each Expression by itself, but the ...
0
votes
1answer
345 views
“The type already contains a definition for” with a Func and a Method
I have the following piece of code
public static Func<PurchasingDataContext, int, int, List<Requisition>>
GetRequisitions = CompiledQuery.Compile((PurchasingDataContext context, int ...
0
votes
3answers
120 views
Using Generic with Func as a parameter
My code is simply:
public override C Calculator<C>(Team[] teams, Func<Team, C> calculatorFunc)
{
return teams.Average(calculatorFunc);
}
I get this error:
Error ...