An API for composing code with declarative expression trees, used by LINQ and the DLR.
I trying to append where predicates and my goal is to create the same expression as: Services.Where(s => …
c# linq expression-trees linq-expressionsI am trying to seed a development database with some test data. I have used context.People.AddOrUpdate(p => …
c# entity-framework-4.3 seed linq-expressions entity-framework-migrationsI need to do some filtering on an ObjectSet to obtain the entities I need by doing this : query = this.…
c# linq linq-to-entities linq-expressionsI'm looking to use LINQ for some searching routines and wanted to have some dynamic where clauses. So, for example, …
c# linq dynamic-linq linq-expressionsi have one common grid view column filter method that filter grid view record with ColumnName and SearchText wise. here …
c# .net linq linq-expressionsI'd like to understand what I am doing wrong with my GROUP BY query in Linq. I've tried many examples (…
c# linq sql-server-2008 group-by linq-expressionsI'm dynamically building linq queries for nHibernate. Due to dependencies, I wanted to cast/retrieve the typed expression at a …
c# .net casting lambda linq-expressionsActing on the answer to my Select a model property using a lambda and not a string property name question, …
.net linq linq-expressionsI am trying to build an expression tree programmatically. I have in my input, a list of condition classes which …
entity-framework linq linq-to-entities linq-expressions dynamic-linqI'm trying to write a method that finds all types in an assembly with a specific custom attribute. I also …
c# reflection custom-attributes linq-expressions