Func is a family of delegate types in the .Net framework.
0
votes
0answers
37 views
Conversion of Expression Func types
I have an
Expression<Func<T_ENTITY_A, object>> sortExpression
which I need to convert to a
Expression<Func<T_ENTITY_B, object>> sortExpression
Each property in ...
1
vote
1answer
59 views
Scope of string inside lambda
I have an interesting scenario in which I've built a validation checking system that maintains a series of requirements in the form List<Tuple<Func<bool>, string>> where the Func ...
-1
votes
3answers
71 views
Call Func<> with argument of type object
I have (for instance) a Func<int, int> which I want to call as usual, except that the parameter is of type object rater than int. I only know the exact type of the Func and the argument at ...
1
vote
3answers
66 views
Can I use Func<object[], object> represent any kind of parameters input and TResult?
Can I have a generic delegation Func to represent any delegation input and result?
Such as
public static int ProcessJob(Func<object[], object> function, params object[] args)
I call this ...
4
votes
1answer
91 views
Func<T>() vs Func<T>.Invoke()
I'm curious about the differences between calling a Func directly vs using Invoke() on it. Is there a difference ? Is the first, syntactical sugar, and calls Invoke() underneath anyway ?
public T ...
2
votes
1answer
69 views
“Incorrect number of parameters supplied for lambda declaration” [duplicate]
When I have this,
public static object Create()
{
return new object();
}
this works:
var m = typeof(Class).GetMethod("Create");
var e = Expression.Call(m);
Func<object> f = ...
1
vote
2answers
115 views
How do I make this Func work with Linq to SQL?
I have an abstract, generic repository class that encapsulates a lot of logic, and it is able to do that because it knows how to isolate a unique data row, thanks to its KeyCompare property, which is ...
0
votes
1answer
51 views
Can Ninject use an anonymous delegate (func) as a ConstructorArgument?
I have a repository abstract class that encapsulates pretty much all of the CRUD functionality:
public abstract class DataRepository<T> : IRepository<T>
where T : class
{
public ...
0
votes
2answers
48 views
Func<> or method in test code?
I saw this loop in test code:
foreach ( StuffId Id in Result.GetIdList() )
{
if ( Id.Level == 3 )
{
Level3Id = Id.ToString();
}
if ( Id.Level == 5 )
{
Level5Id = ...
2
votes
2answers
73 views
Lambda Expression compiling with parameter
I want to extend MVC with helpers. Let's assume I want to build an extension method that takes a property from the model and renders a paragraph.
I've written this code, but it won't compile. I ...
3
votes
3answers
107 views
Is it possible to get number of statements inside an action or determine if it has empty body?
Let's say we have this code :
Action<int> gf = k => { };
Action<int> gfa = k => { k++; };
How I can determine that gf has no body or statements ?
Is it possible to get number of ...
0
votes
4answers
268 views
Why following static function doesn't work ?
Here is my code :
public static class s {
public static int Dx(this int i, Action<int> act, Func<int, bool> con) {
if (con(i)) act(i);
return i;
}
}
Later In my ...
1
vote
2answers
83 views
Cast IEnumerable into Array in Expression Tree Func
I have an expression that has the following structure. I get it from a Expression.ArrayIndex, so I cannot change it:
Expression<Func<TModel[], TProperty>> expression
Afterwards I'm ...
6
votes
3answers
118 views
Combining Action and Func in one parameter
I have many methods that require some logging with the same pattern. Some methods need to return some value, some don't. I have created a method with Action parameter to avoid copypasting all of the ...
5
votes
2answers
58 views
How do i pass a method as the parameter of another method using linq expressions
I want to create a method that runs another method in a background thread. Something like this:
void Method1(string param)
{
// Some Code
}
void Method2(string param)
{
// Some Code
}
void ...
1
vote
1answer
55 views
Mapping Expression<Func<Type1,bool>> Expression<Func<Type2, bool>>
I want to pass my query from Business Layer to Service Layer but when doing this i have to convert my DTO to Entity model.
Normally i can convert Type1 to Type2 via Autommaper but now i want to map
...
5
votes
1answer
81 views
Type inference on nested generic functions
I've searched a bit about type inference, but I can't seem to apply any of the solutions to my particular problem.
I'm doing a lot of work with building and passing around functions. This seems to me ...
3
votes
3answers
94 views
State pattern using methods
I'm trying to implement a simple state machine based on a modified version of the state pattern using methods as states instead of classes, something like this:
private Action<Input> ...
-1
votes
2answers
112 views
Custom Func<> delegate inside Linq where clause
I should customize a Func expression so that I should make a check of an array of bytes inside of it a return true if are this array is equal to a field in a POCO..
So I don't know how to define ...
0
votes
0answers
38 views
Writing a function to add sort filters
We are trying to build a smart sort of columns straight from a database table. This is becoming a if -else chain nightmare of determining whether to add OrderBy, OrderByDescending, ThenBy, or ...
1
vote
1answer
66 views
Implication of using dynamic Expression<Func<T,X>> in NHibernate
Basically in my application, I am using the following code to build my expression depending on the selection on the page.
Expression<Func<T, bool>> expr = ...
1
vote
4answers
80 views
Issue with C#' generics, how to pass through input and output via a Func
private static K ExecuteStoredProcedure<K>(string connectionString, string storedProcedure, SqlParameter[] parameters, Func<I, K> readFunction)
Example usage is shown below:
return ...
0
votes
1answer
79 views
Entity Framework, how to get Sum<> accept a method?
I'm a little bit stuck, and I not sure this is possible. I'm writting a database in Entity Framework, and I want to make a method which can be used in by dataconext.
So I want to write something ...
0
votes
2answers
109 views
Is is possible to wrap method parameters in C# as functions without a lambda expression?
Lets say I have a method with the following signature:
public void MyMethod(Func<int> expression)
{
// Does work
}
And I call this method as follows:
int intProperty = 7;
MyMethod(() ...
2
votes
2answers
132 views
What is the difference between anonymous function to Func?
1:
Func<int, int> myFunc = new Func<int,int>(delegate(int x) {
return x + 1;
});
2:
Func<int, int> myFunc = delegate(int x) {
return x + 1;
};
3:
Func<int, int> ...
0
votes
1answer
96 views
Asterisk func_odbc for keep MixMonitor() files on mysql?
I installed asterisk 1.8 with mysql & odbc addons, how can i use func_odbc for keep MixMonitor() files on mysql?
0
votes
1answer
105 views
Can I “hot swap” one Func in TransfromBlock for another during runtime?
I have the following setup of TransformBlock:
private void SetupTestModule()
{
Func<int, int> func1 = new Func<int, int>(input =>
{
return (input + 1);
...
0
votes
0answers
88 views
How to capture method parameters passed via lambda?
I have a generic method in Web API base controller to which I pass in a Func
I'd like to somehow, if possible, to caputre parameters of the callback method used within lambda...
To illustrate see ...
9
votes
2answers
206 views
T of Func<S, T> is inferred from output of lambda expression only when S and T are different?
When S and T are different, this works:
public static void Fun<S, T>(Func<S, T> func)
{
}
Fun((string s) => true); //compiles, T is inferred from return type.
But,
public static ...
3
votes
2answers
160 views
Use Action delegate to call correct function based on generic type
I have seen this pattern/approach used before, and I'm trying to recreate it to make some of my existing code more efficient.
The Use Case:
A complex object is retrieved from a source system. Only ...
1
vote
2answers
101 views
Linq Expression - Invalid Arguments
public class EcImageWrapper
{
//etc...
public IQueryable<EcFieldWrapper> ListOfFields
{
get
{
//logic here
return ...
0
votes
2answers
75 views
how to implement Action<..> as Func<…>
I'd like to implement Action as func and get the error : could not use void in this context.
Please advise
Action<string> someFunc_1 = Console.WriteLine;
someFunc_1("Test");
Func<string, ...
0
votes
1answer
157 views
Custom mediatypeformatter not working on inherited classes
I have this line:
GlobalConfiguration.Configuration.Formatters.Add(New ExcelMediaTypeFormatter(Of Classification)(Function(t) New ExcelRow(ExcelCell.Map(t.ChemicalAbstractService), ...
6
votes
2answers
107 views
Func delegate doesn't chain methods
Lets imagine simple delegate calls:
void Main()
{
Func<int, int, string> tfunc = null;
tfunc += Add; // bind first method
tfunc += Sub; // bind second method
...
1
vote
1answer
54 views
.NET Attribute with Func<TResult> parameter [closed]
I know this surfaced many times, like in this or this question, and it is clearly written on MSDN, but if I cannot pass a function anyhow as a parameter to an attribute, how can ...
0
votes
1answer
63 views
sum over a field on a query
this should be a asked-before question, I searched but I could not find any answer on that. Sorry if it is duplicated. I have a query lets say:
my_query=session.query(Item).filter(somefilter)
Now, ...
3
votes
1answer
109 views
Uniquely identifying anonymous method with parameters of Func body
I'm trying to write some magic code for handling caching that may or may not be possible. Basically, the idea is to have a CacheManager class with a static method which accepts an Func to execute as a ...
0
votes
1answer
76 views
ObjectContext from DataSet
I'm trying to compile a linq query.
Func<ImportNewPermits_Enviance, String, EnumerableRowCollection<ImportNewPermits_Enviance._History_for_Permit__POI__Data_Row>> s_compiled =
...
1
vote
3answers
63 views
Func declared as a variable used in .Where() crashes my application
I have something like this:
Func<Thread, bool> tmpFunc = thread => true;
threads = Threads.Where(tmpFunc).(...)
Now, when I do Threads.Where(thread => true).(...) everything is okay, ...
2
votes
2answers
181 views
Assigning a Func to an Expression and vice versa
I was tampering with Expressions and I got confused at some points
We can assign same LamdaExpression to both Expression and/or Func. But we cannot assign a Func to an Expression (or an Expression ...
4
votes
2answers
346 views
Using FluentValidation's WithMessage method with a list of named parameters
I am using FluentValidation and I want to format a message with some of the object's properties value. The problem is I have very little experience with expressions and delegates in C#.
...
3
votes
2answers
129 views
__func__ and logging
I am implementing a log handler in C++, and it works good and all, however there is one thing which I would find usable and that is where the logger got the output from.
I guess this isn't really a ...
1
vote
1answer
85 views
Using a out parameter in Func Delegate
I have a method signature
bool TryGetItem(string itemKey,out Item item)
How can i encapsulate this signature in
delegate V Func<T,U,V>(T input, out U output)
as in the post: ...
0
votes
4answers
116 views
Passing method as parameter to function
Is there a way of passing in a method to a function as a parameter and then calling it via list.Sort()? I've tried this:
public static string BuildHumanSitemap(Func<TreeNode, TreeNode, int> ...
4
votes
1answer
92 views
Assign a method with default values to Func<> without those parameters?
I would like to be able to do the following:
Func<int,bool> tryMethodFunc = TryMethod;
Where TryMethod has a signature like:
bool TryMethod(int value, int value2 = 0, double value3 = 100.0)
...
0
votes
2answers
205 views
How to assign a value via Expression?
This would be very simple if I were able to assign via a Lambda expression (below)
//An expression tree cannot contain an assignment operator
Expression<Func<ComplexObj, object>> ...
0
votes
3answers
152 views
How to solve generic predicate in where clause item?
i face to face 3 errors on where clause"_list.Where<T>(whereClause) " how to solve it?
Error 1 'System.Collections.Generic.List<FuncMetodunuTaniyalim3.DataModel.Customer>' does not ...
2
votes
1answer
87 views
Using Func to capture a Class Property
I am working on implementing a graph class. In class I learned that the breadth-first and depth-first traversals are the same algorithms except to store the traversing nodes a queue and stack is used ...
2
votes
3answers
131 views
Evaluating a Func<T> delegate via a property within the type's generic object
I am having some difficulty in trying to make a Func<T> expression evaluate a property within an object instance, e.g.
var t = new Transition<ILexeme>( 1, () => TokenType == ...
4
votes
2answers
142 views
Dictionary with Func as key
I am wondering if this is a sane choice of key for a dictionary? What I want to do is use an expression as the key in a dictionary, something like:
var map3 = new Dictionary<Func<int, ...




