You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if we would have support for lambda expressions. Lambda expressions would allow clients to write functions which accepts expressions written in SQL. For example imagine you would have a function in C# like this:
This function should be accessible in the query engine like this:
SELECTt.Handle,
t.Name,
FindParentTask(t, (Task parentTask) ->parentTask.OutlineLevel>=1ANDparentTask.EnterpriseOutlineCode8.FullName ='a.b.c').Handle
FROM tasks t
The lambda expression syntax is something like this:
In contrast to C# 3.0 I would suggest making the declaring parameters explicit is better. First it radically simplifies the overload resolution process and secondly if improves the readabillity of the lambda expression.
The text was updated successfully, but these errors were encountered:
Ported from CodePlex
It would be great if we would have support for lambda expressions. Lambda expressions would allow clients to write functions which accepts expressions written in SQL. For example imagine you would have a function in C# like this:
This function should be accessible in the query engine like this:
The lambda expression syntax is something like this:
In contrast to C# 3.0 I would suggest making the declaring parameters explicit is better. First it radically simplifies the overload resolution process and secondly if improves the readabillity of the lambda expression.
The text was updated successfully, but these errors were encountered: