Tagged Questions

Func is a family of delegate types in the .Net framework.

learn more… | top users | synonyms

19
votes
2answers
280 views

Extension method that extends T - bad practice?

I've read that it is usually bad practice to extend System.Object, which I do agree with. I am curious, however, if the following would be considered a useful extension method, or is it still bad ...
15
votes
10answers
4k views

How do you use Func<> and Action<> when designing applications?

All the examples I can find about Func<> and Action<> are simple as in the one below where you see how they technically work but I would like to see them used in examples where they solve ...
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; // ...
14
votes
6answers
585 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 ...
14
votes
8answers
707 views

In few words, what can be said about Func<>

I've been seing Func<> for sometime now, and I've manage to avoid it (for now). But, now it looks like I can't dodge it forever. For instance, I tried Dynamic Linq, but almost everything was in ...
13
votes
2answers
875 views

Does Ninject support Func (auto generated factory)?

Autofac automatically generates factories for Func<T>; I can even pass parameters. public class MyClass { public MyClass(Func<A> a, Func<int, B> b) { var _a = a(); ...
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 ...
10
votes
4answers
225 views

Convert Func<T, String> to Func<T, bool>

I think my mind is exploding trying to figure out Funcs... If this makes no sense, I apologize, right now it make sense to me but its been a long day already .... 1) Assuming you are given a func ...
8
votes
7answers
491 views

Is Func<in T, out TResult> appropriate to use as a ctor arg when applying Dependency Injection?

Example: public class BusinessTransactionFactory<T> where T : IBusinessTransaction { readonly Func<Type, IBusinessTransaction> _createTransaction; public ...
8
votes
5answers
356 views

use Func<> (or Action<>) or create own delegate?

Which one is better in, say, parameter type in a method (not related to LINQ). Apparently Func is better since it's simpler, more descriptive, and if everyone is using this everything will become ...
8
votes
3answers
13k views

C# - How do I define an inline method Func<T> as a parameter?

I've written a simple SessionItem management class to handle all those pesky null checks and insert a default value if none exists. Here is my GetItem method: public static T GetItem<T>(string ...
7
votes
2answers
136 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 ...
7
votes
6answers
1k views

Can you get a Func<T> (or similar) from a MethodInfo object?

UPDATE: The suggestion to use an expression tree to construct a lambda using the given MethodInfo, in conjunction with the Expression<TDelegate>.Compile method, proved to be a gold mine in my ...
7
votes
1answer
553 views

Func delegate with ref variable

public object MethodName(ref float y) { //method } How do I defined a Func delegate for this method?
7
votes
4answers
893 views

Explanation of Func

I was wondering if someone could explain what Func<int, string> is and how it is used with some clear examples. Thanks in advance
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 ...
6
votes
4answers
267 views

C#: Elegant way to wrap method calls

Apologies for the fairly ambiguous title but what I'm trying to achieve is probably better stated in code. I have a WCF client. When I'm calling methods I would like to wrap each call in some error ...
5
votes
4answers
95 views

C# Action<> with Func<> parameter

I have the following method that I can't figure out correct syntax to call: public T GetAndProcessDependants<C>(Func<object> aquire, Action<IEnumerable<C>, Func<C, ...
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
106 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 == ...
5
votes
2answers
1k views

C# Action and Func parameter overloads

I need a method that takes an Action (or a Func), but the Action has a mixed number of parameters. What is the most straight forward and compact way to implement these overloads: public void ...
4
votes
4answers
87 views

Why can't I cast String func(SomeEnum) to a Func<Enum, String>?

I think this has something to do with the whole variance thing, but I don't quite get why this isn't allowed. I have a method public void method(Func<Enum, String> func) And I have a few ...
4
votes
1answer
185 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
3answers
107 views

How can I pass a void returning extension method to dynamic returning extension method?

I want to pass an extension method that returns void as a parameter to another extension method that returns dynamic. public static void AddTo(this Object entity, Object parent) { ...
4
votes
6answers
214 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>> ...
4
votes
8answers
356 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
4answers
172 views

C# Method that executes a given Method

I am trying to write the following: I would like to write a method "A" which takes as parameter another method "B" as well as an unknown number of parameters for this method B. (params object[] args). ...
4
votes
4answers
398 views

Declare delegate manually, use Func<T> or Action<T>?

today I was thinking about declaring this: private delegate double ChangeListAction(string param1, int number); but why not use this: private Func<string, int, double> ChangeListAction; ...
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, ...
4
votes
2answers
299 views

Func<> delegate - Clarification

When an array is given: int[] a={1,3,4,5,67,8,899,56,12,33} and if i wish to return the even numbers using LINQ var q=a.where(p=>p%2==0) If i were to use C#2.0 and strictly func<> delegate ...
3
votes
4answers
92 views

python positional args and keyword args

I am reading the source codes of mercurial, and found such a func def in commands.py: def import_(ui, repo, patch1=None, *patches, **opts): ... in python, postional args must be put ahead of ...
3
votes
1answer
75 views

How use C# delegate for calling different methods where each has a different out parameter?

The following question and answer addresses the use of an out parameter in a delegate: C# Func with out parameter I need to take this a step further. I have several conversion methods (functions), ...
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
3answers
103 views

C#, Action/Func vs Methods, what's the point?

I know how to use Action and Func in .Net, but every single time I start to, the exact same solution can be achieved with a regular old Method that I call instead. This excludes when an Action or ...
3
votes
1answer
177 views

Schema, User and functional Id in Oracle

I confused lot in oracle about schema, user and functional id. Let consider my two different cases Case I : Let us consider SCOTT@ORCL.If we think SCOTT is user. while creating user alone it ll ...
3
votes
2answers
163 views

C# - How can I pass a reference to a function that requires an out variable?

public class Foo { public void DoFoo() { int x; var coll = TheFunc("bar", out x); } public Func<string, int, ICollection<string>> TheFunc { get; set; } } ...
3
votes
2answers
134 views

Go map of functions

I have Go program that has a function defined. I also have a map that should have a key for each function. How can I do that? I have tried this, but this doesn't work. func a(param string) { } m ...
3
votes
3answers
195 views

C# WCF closing channels and using functions Func<T>

This is the point, I have a WCF service, it is working now. So I begin to work on the client side. And when the application was running, then an exception showed up: timeout. So I began to read, there ...
3
votes
3answers
109 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
235 views

Begin and End Invoke in a single extension method properly

I want to double check with others whether this would be the correct way to create an extension method that begins an asynchronous process, and returns a function that when invoked essentially waits ...
3
votes
1answer
138 views

How to moq a Func

Trying to unit test a class whose constructor takes in a Func. Not sure how to mock it using Moq. public class FooBar { public FooBar(Func<IFooBarProxy> fooBarProxyFactory) { ...
3
votes
2answers
1k views

LINQ to SQL - Group By Day/Week/Month

I have been scratching my head over this one for a while now. Say I make an extension method, to group a list of items by Date, I want to change the possible grouping, So that the results can be ...
3
votes
4answers
200 views

Encapsulating Action<T> and Func<T>?

I'm trying to make a design for some sort of IExecutable interface. I will not get into details, but the point is that I have several Actions that need to be executed from a base class. They may take ...
3
votes
1answer
176 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 ...
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> ...
3
votes
3answers
523 views

Pass method, created with reflection, as Func parameter

I've got a method (fyi, I'm using c#), accepting a parameter of type "Func", let's say it's defined as such: MethodAcceptingFuncParam(Func<bool> thefunction); I've defined the function to ...
2
votes
5answers
172 views

Why is Action/Func better than a regular Method in .Net?

I much prefer using an Action or a Func if I need a quick reusable piece of code, however others on my team don't like them or understand them. At the moment my only real argument is about preference ...
2
votes
3answers
118 views

How to determine anonymous function parameters in c#?

Given the following code, public T Execute<T>(Func<T> methodParam) { return methodParam (); } public void CallMethodsAnonymously<T>() { T result ...
2
votes
3answers
125 views

Is it bad practice to use Action and Func all the time instead of making corresponding delegates?

A lot of time when creating simple events in my program that other classes can subscribe to instead of making a delegate and creating an event from the delegate I just create the event with either ...
2
votes
2answers
51 views

In C#, how can I pass a method from another class using Func<T>?

I have a state machine that needs to call a different method on each object from a List of objects depending on the state I'm in. Basically I'm trying to refactor the code that has a loop in each case ...

1 2 3