Top "Dynamic-linq" questions

Dynamic LINQ is a small library on top of the .NET framework 3.5 or later which allows to build string based query expressions.

LINQ : Dynamic select

Consider we have this class : public class Data { public string Field1 { get; set; } public string Field2 { get; set; } public string …

c# linq dynamic-linq
System.LINQ.Dynamic: Select(" new (...)") into a List<T> (or any other enumerable collection of <T>)

Say I have a DataTable with four columns, Company (string), Fund (string), State (string), Value(double): table1.Rows.Add("Company 1","…

linq dynamic-linq
Dynamic where clause in LINQ - with column names available at runtime

Disclaimer: I've solved the problem using Expressions from System.Linq.Expressions, but I'm still looking for a better/easier way. …

.net linq-to-sql dynamic-linq
Dynamic LINQ - Is There A .NET 4 Version?

I'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-expressions
using variables in a dynamic linq query

I am using Linq to Entities and have added the using stmt of using System.Linq.Dynamic; My goal is …

c# linq dynamic-linq
Dynamic LINQ GroupBy Multiple Columns

I need to translate the following LINQ query to Dynamic LINQ that accepts several grouping columns based on user input. …

c# .net linq entity-framework dynamic-linq
How to use Dynamic LINQ (System.Linq.Dynamic) for LIKE operation?

Can any body tell me how can I use a LIKE operator using System.Linq.Dynamic? I need to add …

c# asp.net linq dynamic-linq
How to use GroupBy using Dynamic LINQ

I am trying to do a GroupBy using Dynamic LINQ but have trouble getting it to work. This is some …

c# linq dynamic-linq
Dynamic linq Building Expression

I need to create a dynamic linq expression for a dynamic search.The basic search is working but it fails …

c# linq query-builder dynamic-linq
Converting Expression<T, bool> to String

I need a way to recreate dynamically generated reports at some point in the future. Long story short, I need …

c# expression dynamic-linq