Tagged Questions

18
votes
6answers
6k views

converting a .net Func<T> to a .net Expression<Func<T>>

Going from a lambda to an Expression is easy using a method call... public void GimmeExpression(Expression<Func<T>> expression) { ((MemberExpression)expression.Body).Member.Name; // ...
17
votes
6answers
609 views

Why is Func<> created from Expression<Func<>> slower than Func<> declared directly?

Why is a Func<> created from an Expression<Func<>> via .Compile() considerably slower than just using a Func<> declared directly ? I just changed from using a ...
7
votes
2answers
137 views

Can I define a method to accept EITHER a Func<T> OR an Expression<Func<T>>?

If I attempt to write two overloads of a method, one accepting an Expression<Func<T>> parameter and another accepting a Func<T>, I will get a compiler error on trying to call the ...
3
votes
3answers
114 views

Avoid generic arguments

I have the following extension method which asserts that a property (Id) contains a specified attribute (TV): public static void ShouldHave<T, TV, TT>(this T obj, Expression<Func<T, ...
3
votes
1answer
185 views

Get expression parameter name

I need to get the name of a expression parameter. What i want to do is similar to what FluentNhibernate does with column mapping: Map(x => x.Name) From this, i need "Name". How do I do this? I ...
0
votes
1answer
35 views

How to pass two parameters to System.Func

I have a function like this public BuildColumn<TModel> TEST<TProperty>( Expression<Func<TModel, TProperty>> expression, string DisplayName, object ...
0
votes
1answer
73 views

Using the Expression API, is there a way to “combine” a Func<T> with another?

Say I have some method like so: public void Method<T>(Func<T> func) { ... } Is there any way that I can use the Expression API and effectively inject some code to run before the code in ...
0
votes
1answer
120 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 ...