Tagged Questions
4
votes
1answer
69 views
Lambdas and type inference
I'm having a bit of trouble understanding the reason behind why the following code is giving me an error:
var funs = Enumerable.Range(0, 10).Select(x => (int y) => x + y);
foreach (var fun in ...
2
votes
1answer
58 views
Why the AsQueryable following by Any leads to select without Where clasue?
I am using Entity framework 4 and I have the following piece of code:
public decimal GetSchoolSuccessRate(EvaluationComparationFilter filter)
{
return this.GetSuccessRate(x => x.TestCampaignId ...
1
vote
2answers
49 views
Why can the c# compiler not resolve the argument types of a lambda expression in a ternary operator?
I have this code:
Action<A, B> fnUpdate = (someBool) ? (a, b) => a.propOne = b : (a, b) => a.propTwo = d;
Why can the compiler not resolve the types of a and b, just because it is ...
0
votes
2answers
38 views
Expression.Equal - How to Compare Nullable and Non Nullable fields?
I have a nullable datetime field and I have to convert the string date field to a nullable datetime type (using Expression)....I did this using the below.
...
1
vote
1answer
56 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 ...
2
votes
1answer
44 views
Runtime creation of LINQ expression
Say I have this expression:
int setsize = 20;
Expression<Func<Foo, bool>> predicate = x => x.Seed % setsize == 1
|| x.Seed % setsize == 4;
...
1
vote
1answer
40 views
Using nested collections of lambda expressions to create an object graph
I am interested in utilizing lambda expressions to create a tree of property selectors.
The usage scenario is that we have some code that does some recursive reflection on an object graph, and to ...
1
vote
1answer
33 views
Any way to know when a variable has been closed over?
So closures in C# are awesome, and expressive and great. Except when they aren't (in particular when you don't mean to close a value over). Are there any tricks, (programming or IDE) to determine when ...
2
votes
5answers
75 views
Remove items from list<a> AND list<b> when a.Foo == b.Bar
I'm looking for an elegant way of comparing 2 different List<> collections and removing the items in which a specific field value matches. For example:
Customer object
class Customer
{
...
4
votes
2answers
59 views
Dynamically evaluating a property string with Expressions
How do I build an expression that will fulfill the following goal:
public object Eval(object rootObj, string propertyString)
eg: Eval(person, "Address.ZipCode") => return person.Address.ZipCode
...
0
votes
3answers
73 views
How to query records based on date
I have a DataTable with 5 columns with type of int, string and DateTime. I have written a LINQ query to filter records by date. How do I get records by today and yesterday?
var Data = ...
1
vote
3answers
32 views
Marshal::GetFunctionPointerForDelegate: should I release its result?
I'm converting a managed System.Action to an unmanaged std::function inside a C++/CLI project; should I release the given IntPtr after using the callback, or is it unnecessary?
void ...
0
votes
1answer
44 views
C# Count occurrences in list
I have a type Card with an int property called Value where Ace = 14, Five = 5, etc.
If I have a list of Cards (5), ie. a hand. What I would like to do is count the number cards where the Value is ...
1
vote
1answer
58 views
c# - Returning default values for null properties, when the parent of these properties can or can not be null
So I didn't find any elegant solution for this, either googling or throughout stackoverflow. I guess that I have a very specific situation in my hands, anyway here it goes:
I have a object structure, ...
1
vote
2answers
65 views
Creating Extension method to include subquery
I am having trouble creating an extension method for an IQueryable that will include the translation for a specified column in a Linq Query.
Suppose i have the query below.
I would like to call a ...
0
votes
2answers
63 views
How to get array indexes using lambda expression
I was trying to create a string joining elements of an integer array:
string.Join(", ", integerArray.Select(p => p.ToString()).ToArray())
This way I get something like this: 1, 2, 3, 4.
Now I'd ...
0
votes
1answer
23 views
Querying MongoDB with List of IDs using Lambda Expression
I'm hoping someone can help me:
I'm using an interface to access my data, the Find method is:
public IQueryable<T> Find<T>(Expression<Func<T, bool>> expression) where T : ...
0
votes
1answer
30 views
Filtering one IQueryable List with another
I have two lists as below:
var processedOrders = this._requestReviewRecordService.GetAll().ToList();
var orders = _orderRepository.Table.Where(o => o.OrderStatusId == (int)OrderStatus.Complete ...
1
vote
1answer
77 views
Call Contains() method in LINQ to Entities Expression on a type other than String
I am trying to implement searching/filtering in a grid that allows the user to create filter conditions that involve a column, an operation, and a value.
Example: Column1 Contains "somevalue"
The ...
0
votes
1answer
34 views
How do I find delegates, anonymous methods and lambda expressions in my code?
I like Edit-and-Continue very much, so much that I want to find all kinds of things that prevent it from working and move them away into separate methods, change to regular methods or something.
...
0
votes
4answers
47 views
Comparing two list C#
I have entity which is as follows
public class A
{
public virtual int Id { get; set; }
public virtual string AccountName { get; set; }
public virtual string AccountId { get; set; }
...
0
votes
1answer
30 views
Why are “DisplayClass” and calling method name ordered this way in the stack trace?
First of all, I've read this answer and no, it only says how it is implemented right now, but doesn't explain why.
Here's a sample program (same as here):
class Program
{
static void Main()
...
0
votes
2answers
42 views
Reading Properties of an Object with Expression Trees
I want to create a Lambda Expression for every Property of an Object that reads the value dynamically.
What I have so far:
var properties = typeof (TType).GetProperties().Where(p => p.CanRead);
...
2
votes
5answers
56 views
Select all in lambda Where()
I know that this works:
var result = someCollection.Select(x=>x);
I'm after a similar result with the Where() method:
var result = someCollection.Where(x=> someBool ? x : x.Key == 1);
...
1
vote
1answer
32 views
return a model with .Include to view
I have the following item model:
public class Item
{
public int Id {get; set;}
public string name {get; set;}
public virtual ICollection<Comment> Comments {get; set;}
public ...
1
vote
1answer
28 views
Can't apply orderbydescending lambda
I have a very simple lambda expression , but there is something wrong with it , I am unable to chose a field upon which I would want to use orderbydesc
...
0
votes
2answers
76 views
Lambda expression replace why can I use “%” operator and not the “>” operator
return x%2 != 0; // Return true if x is odd. => ok
return x>0 == 1; // Return true if x > 0 => this won't work
Can someone tell me why the second line isn't working ? Why can't I ...
3
votes
2answers
78 views
What does “DisplayClass” name mean when calling lambda?
According to this answer when code uses local variables from inside lambda methods the compiler will generate extra classes that can have name such as c__DisplayClass1. For example the following ...
0
votes
1answer
76 views
How do I write this SQL query using Linq/Lambda?
I've up until now only written simple queries using lambda like (c => c.UserID == uID) and etc., But now I have a more advanced SQL query. I wish to run against the model I've created using Entity ...
0
votes
2answers
47 views
Select from two entities with LINQ
I have some issues wrapping my head around the .include in LINQ. I'd appreciate a lot if someone could show me the query to achieve this:
I have two entities, User and Validation (which is a serie of ...
1
vote
1answer
79 views
My lack of understanding LINQ
Ok I have several tables linked together.
Departments (k = departmentID)
Functions (k = functionID, fk = departmentID)
Processes (k = processID, fk = functionID)
Procedures (k = procedureID, fk = ...
1
vote
2answers
63 views
Case-insensitive Func
I have a Func<Message, bool> where Message is a class of mine.
I build up a Lambda and compile it into a Func<Message,bool>
public static Func<Classes.Message, bool> ...
1
vote
1answer
28 views
Disposing resource in Linq statement lambdas
I have some code:
using(var userlookup = new UserLookup())
{
someThing = someCollection
.Select(t =>
{
var user = ...
0
votes
3answers
45 views
How do I Find an object up the list I am iterating through
I am iterating through a List of objects of Type "prvEmployeeIncident".
The object has the following properties:
public DateTime DateOfIncident { get; set; }
public bool IsCountedAsAPoint;
public ...
1
vote
2answers
86 views
How can I pass a list of properties to a method using lambda expressions
Let's say I have a method, which prints the names and values of some properties of an object:
public void PrintProperties(object o, params string[] propertyNames)
{
foreach (var propertyName in ...
5
votes
5answers
105 views
Array.Sort in with nontrivial comparison function
Consider the following code from C# 5.0 in a Nutshell, p. 289:
int[] numbers = { 1, 2, 3, 4, 5 };
Array.Sort (numbers, (x, y) => x % 2 == y % 2 ? 0 : x % 2 == 1 ? -1 : 1);
which gives result ...
1
vote
3answers
52 views
Action to Delegate : new Action or casting Action?
I found two different ways to initialize a Delegate with an Action :
Create a new action or casting to Action.
Delegate foo = new Action(() => DoNothing(param));
Delegate bar = (Action)(() => ...
1
vote
1answer
35 views
Extension method on lambda expression
I have a helper method which gets the name of a property defined by a lambda which works as below:
ExpressionUtil.GetName((Thing t) => t.Property); // returns "Property"
I would like to turn ...
-2
votes
2answers
75 views
Lambda for Groupby and Sum?
var product = db.Products
.Where(x => x.ProductKey == 310)
.Join(db.InternetSales, p => p.ProductKey,
c => c.ProductKey, (p, c) => c)
...
2
votes
6answers
80 views
Sum a range of ints in a List
Let's say I have a List like this:
List<string> _lstr = new List<string>();
_lstr.Add("AA");
_lstr.Add("BB");
_lstr.Add("1");
_lstr.Add("7");
...
1
vote
1answer
48 views
Translating anonymous methods into lamda expression
If I would translate this anonymous method:
Func<int, int> f = delegate(int i)
{
return i + 1;
};
into a lambda expression, it would like this:
Func<int, int> f = i => i + 1;
...
1
vote
1answer
34 views
How to filter elements from the list by checking elements' powers?
From the list PointsInSpace I would like to select all the elemets that are inside the circle with selected radius.
The class XY members are
double x,
double y
So for the selected radius r with ...
0
votes
1answer
41 views
NullReferenceExeption when Linq'ing IEnumerable<XElement>
I'm new to the whole Linq game, so please forgive my ignorance.
I have this piece of code here:
String tag = "Covers";
XDocument doc = XDocument.Load(file);
IEnumerable<XElement> allDvds = ...
2
votes
2answers
79 views
.Where Lambda expression loading entire table
I have set up an entity framework project with a code-first approach:
Link to code-first approach
I have added a method to access the repositories by inserting a function:
The interface for the ...
0
votes
1answer
75 views
Where or (not and) with list of expressions c#
I got the following code
public class Personnel {
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int ...
-5
votes
1answer
41 views
check where a list entry is not 0.0 [closed]
How to check is a List entry is not e.g. 0.0?
I just know how to check if it is 0.0 like this:
MyList.Where(a => a.Equals(0.0))
but how to check it if it's not?
0
votes
2answers
28 views
Lambda expression to step backwards in a chain based on keys
KEY NAME REPLACED_BY
1 Foo 1.0 3
2 Bar 1.0 NULL
3 Foo 2.0 NULL
This is supposed to represent a database table ...
0
votes
1answer
71 views
How to convert a LambdaExpression to typed Expression<Func<T, T>>
I'm dynamically building linq queries for nHibernate.
Due to dependencies, I wanted to cast/retrieve the typed expression at a later time, but I have been unsuccessfull so far.
This is not working ...
1
vote
1answer
44 views
Construct LambdaExpression for nested property from string
I am trying to create a lambda expression for a nested property at run-time from the name of the propert. Basically I am trying to create the lambda expression specified by:
var expression = ...
-3
votes
2answers
110 views
insert , delete in C# lambda expression [closed]
I want to know the differences of using
DB.MyTable.InsertOnSubmit(..);
and
DB.MyTable.InsertAllOnSubmit(..);
----------------------------------
DB.MyTable.DeleteOnSubmit(..);
and
...





