Tagged Questions
15
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; // ...
11
votes
6answers
6k views
What's so great about Func<> delegate?
Sorry if this is basic but I was trying to pick up on .Net 3.5.
Question: Is there anything great about Func<> and it's 5 overloads? From the looks of it, I can still create a similar delgate on ...
4
votes
8answers
355 views
Func<T, TResult> delegate real world uses
I've recently been playing around with the delegate Func<T, TResult> and creating methods that return different instances Func<T, TResult> containing lambda but what I have struggled to ...
4
votes
2answers
649 views
Func vs Delegate
My morbid curiosity has me wondering why the following fails:
// declared somewhere
public delegate int BinaryOperation(int a, int b);
// ... in a method body
Func<int, int, int> addThem = (x, ...
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> ...
2
votes
3answers
204 views
c# - Expression overload as parameter
I'd like to find a way to pass an expression (compiled if possible) as an argument to a function.
The expression will always return the same type. I want to save that expression(function) as a ...
2
votes
1answer
368 views
C# casting an object within lambda
I am currently trying to set a field which I need in business logic which in this case is Lazy.
(yes not the property, it is necessary to set the field)
I get the error that Lazy can not be converted ...
2
votes
2answers
585 views
.NET Func(Of Tin, Tout) using a lambda expression with ByRef argument gives incompatible signature error
VB.NET 2010, .NET 4
Hello,
Quick question. Why does this:
Private [Function] As Func(Of Double, String) = Function(ByRef z As Double) z.ToString
Give the following error:
Nested function ...
2
votes
1answer
370 views
Func Invoke, is there a better solution
I've an async downloader class that I want to control with different settings from a service layer.
In the downloader class I've the following setup to control how the downloads should be handled.
...
2
votes
5answers
427 views
Predicates and OrderBy , Func
i understand that predicates are delegate to function which return bool and take generic param , i understand that when i say
mycustomer => mycustomer.fullname == 1
it actually means:
...
1
vote
2answers
33 views
Passing a field to a function to sort on that field
I am writing a function with a signature like this where I am sorting the model data among other things:
public MyModel GetModel(IQueryable<Something> query, string sort,
int page, int ...
1
vote
2answers
251 views
C#: Func with a constructor of an inherited type
As we know you can point to a constructor as a Func<T> like this:
Func<MyObject> constructor = () => new MyObject();
var newObject = constructor();
But is there a way to make a ...
1
vote
2answers
189 views
reuse a method call inside Func/lambda expression
First let me say I'm not sure if the title of this question makes any sense, but I'm not sure how to word my problem.
I have a class defined as
public static class NaturalSort<T>
This class ...
0
votes
3answers
82 views
How do I wrap Func<dynamic, MyClass> property
This is simplified setup - I have API (I have n o control on the API), which exposes a Func property like this:
public Func<dynamic, MyClass> FuncProperty { get; set; }
Usually it's used like ...
0
votes
1answer
120 views
Good way to Invoke in Action method
How do i Invoke items so the TestAction do write out "s.Hello"? Right now i don't do anything, it jumps over the "action = s.." line.
Or is the another way to do this? Since i don't want to return ...
0
votes
5answers
189 views
How to invoke Func to set a local List<>
I guess I am missing something here but can someone explain how I can get this to work
I have a method that takes a Func, I want to execute that func in the method a store the result in a local var.
...