Dynamic LINQ is a small library on top of the .NET framework 3.5 or later which allows to build string based query expressions. A common use case is to create LINQ queries at runtime in contrast to constructing queries at compile time.

learn more… | top users | synonyms (2)

0
votes
0answers
10 views

How to resolve Dynamic LINQ ParseException: “Identifier Expected”

I am getting generic error message System.Linq.Dynamic.ParseException: Identifier expected. What should I check in order to resolve it? The error isn't very detailed. I did check the source and the ...
0
votes
1answer
67 views

Invoking Regex.IsMatch() inside a dynamic linq query

I'm trying to invoke the Regex.IsMatch() and evaluate the returned result inside a dynamic linq query. This is what I tried: public static LambdaExpression Parse(SearchQuery query) { string ...
1
vote
2answers
74 views

Dynamic Linq cannot parse long.Parse()

I'm using the Dynamic Linq Library to parse a boolean expression. In this method: public static LambdaExpression Parse(SearchQuery query) { string compilableExpression = ...
1
vote
0answers
30 views

How can I make my Dynamic Linq query more efficient

I've written an mvc controller function to handle dynamic queries, it's working great but with some more complicated queries it's really bogging down as much as 15 second response time. I used ...
1
vote
0answers
42 views

Expression Trees and Joins

Expression<Func<Account, IEnumerable<Attachment>>> attachments = t => attachmentBuilder.Populate("COMPANYNAME", t.AccountID.ToString()); var q = cxt.Accounts.Select(e => new ...
1
vote
1answer
74 views

Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool>

I'm Using Dynamic Linq library and there is Source code and basic docu and the Nuget version PM> Install-Package DynamicLINQ I'm trying to construct a where clause that involves Guids I have ...
0
votes
2answers
114 views

Dynamic Linq Query not working with DateTime field

I am using Dynamic linq to provide my MVC app with data and I have trouble with DateTime fields. The objects I'm parsing through has a System.Datetime field and I want to check if the dates ...
0
votes
2answers
44 views

DynamicLinq C# not working in join

I am using in my C # projects DynamicLinq. When I do a simple select using "order by", "skip", etc. works perfectly. But if you do join restona simple error: Error 3 Instance argument: cannot ...
0
votes
0answers
60 views

System.Linq.Dynamic.DynamicExpression.ParseLambda for expressions with extension methods and methods on the object

I am using System.Linq.Dynamic.DynamicExpression from the System.Linq.Dynamic library to parse the string to an expression on an entity. It is working fine if my expression string contains the public ...
-2
votes
1answer
89 views

Return a collection of an anonymous type with dynamic linq

Apparently, the Dynamic LINQ Library has the ability to return a collection of an anonymous type. However, I am not exactly sure how to do this. I basically just need to build the following using ...
1
vote
1answer
93 views

Get Dynamic OrderBy in Linq [duplicate]

I am using datatables in quite a few pages in my MVC 3 site - they use server side paging and now I want to implement sorting on the column headers. Datatables comes with iSortCol_0 which is an int ...
1
vote
1answer
88 views

Use a numeric value in a linq dynamic query string

I am trying to make a dynamic linq query that will check for values based on a string. First of all, here's the query: objQry = from o in m_Db.OBJECTS.Where(whereConditions) ...
2
votes
1answer
53 views

Cannot check the same property twice using dynamic linq

I'm building an MVC app which will have to build dynamic linq queries to the server, and I'm facing something that puzzles me. Up to now I'm able to make a query like this: var objQry = from o in ...
0
votes
1answer
37 views

Dynamic linq unable to parse ordering

Say I have a query that selects into a defined type like so: public class SomeObject { public DateTime CreatedDate { get; set; } } private class MyType { internal SomeObject Object1 { get; ...
0
votes
1answer
85 views

LINQ to SQL querying same column multiple times

I have a bunch of parameters that I pass into a C# method that uses LINQ to SQL. All of these parameters are filters from a UI. Four of the parameters I need to filter are in the same column in the ...
0
votes
0answers
33 views

Dynamic Linq Library with Datatable

Can anyone please tell me why this returns an error: querycats = CType(OriginalQuery, DataTable).AsEnumerable(). _ AsQueryable().Select("New (it(""Created_By"") as Created_By)") Error is: ...
1
vote
2answers
277 views

Concat the string with linq to entities

I'm using the Dynamic Linq with Linq to Entities So, I tested the normal List<Person> with this code and everything's work: List<Person> per = new List<Person>(); per.Add(new ...
0
votes
0answers
120 views

Using an object with Dynamic Linq Query (System.Linq.Dynamic)

I'm trying to use a new object inside a Dynamic Linq query but I'm having issues with the syntax. Ideally, this is how I would want to use it: Dim queryTest = query.AsQueryable.GroupBy("New ...
0
votes
2answers
174 views

Dynamic LINQ to DataTable: why using hardcode string “it” as DataRow

Assume I have a DataTable with three columns C1, C2, C3: var dt = new DataTable(); dt.Columns.Add("C1", typeof (int)); dt.Columns.Add("C2", typeof (string)); dt.Columns.Add("C3", typeof(string)); ...
1
vote
2answers
141 views

Dynamic Linq query not working as expected - what am I doing wrong?

I'm trying to build a basic dynamic Linq query using LinqPad. My method asks users to select 1 - 3 options, and then dynamically builds the query based on their input. public void ...
3
votes
1answer
155 views

How to do “let” in dynamic LINQ?

How would I write this query in dynamic linq? I know how to do the select, but how do I do the "let"? var qry = from sr in data.Addresses let AddressType_Desc = ...
0
votes
1answer
122 views

How do I create this expression tree (dynamic lambda) in C#?

I am trying to create an expression tree (dynamic linq) that represents the following: There are my custom classes and collections. List<Contract> sel = contractList.Where(s => ...
0
votes
3answers
135 views

How to add an AND/OR expression to the following dynamic linq expression

T is a type that may or may not have a specific property, lets say 'City'. For the types that have a property named 'City', I would like to restrict the records such that only residents of the Gotham ...
0
votes
0answers
205 views

Dynamic LINQ using linqkit

Following this example from http://www.albahari.com/nutshell/predicatebuilder.aspx IQueryable<Product> SearchProducts (params string[] keywords) { var predicate = ...
0
votes
0answers
95 views

Can't get strongly typed data from linq dynamic query expression

There must be a simple way to do this but can I can not find any resources anywhere. The query works perfectly but "record" is a generic object and I would like to be able to retreive strongly typed ...
0
votes
3answers
522 views

Dynamic LINQ DateTime Comparison String Building - Linq To Entities

I'm using the dynamic LINQ library by Scott Guthrie together with Entity Framework and C#. I have to build my where string into a variable based on several factors and then pass the string variable ...
0
votes
0answers
112 views

SQL Like keyword in Dynamic Linq multiples conditionals

How use SQL Like keyword in Dynamic Linq with multiples conditionals? For example in SQL. SELECT NAME, CITY FROM EMP WHERE NAME LIKE '%N1%' AND NAME LIKE '%N2%' In dynamic Linq I use for one ...
0
votes
4answers
142 views

Linq dynamic where count?

Is it possible to use list in where. I want somethink like this: public class Customer { string FirtsName; string LastName; int Number; ..... } I want to filter customers with using ...
1
vote
1answer
116 views

How to filter dynamic linq query on the initial data when there is self-join

I have a query that I generate by dynamic linq. The problem is when I self-join the initial data set, all other filters are on the latest table. I want it to be on the initial. How can I do that? Here ...
0
votes
1answer
110 views

Dynamic expression parsing in localized environment

So I'm trying to parse a simple arithmetic dynamic expression using System.Linq.Dynamic. This runs fine when executed in an English environment where the CurrentCulture is English-US (and the decimal ...
0
votes
1answer
43 views

How would i assign distinct attribute value in a ComboBox datacontext?

I would like to show all distinct Category in a ComboBox named categoryList <DataTemplate x:Key="CategoryTemplate"> <StackPanel Orientation="Horizontal"> <TextBlock ...
3
votes
2answers
2k views

At least one object must implement IComparable?

Model: return (from m in meterReadings group m by new { date = m.ReadDate } into g select new { ReadDate = g.Key.date.ToString("dd.MM.yyyy - HH:mm:ss"), T1 ...
1
vote
3answers
221 views

how to show distinct attribute value in a ComboBox using LINQ?

this is the Book class Book{BookId, Title, Category, Quantity}; So, how would i select only one object from each category using linq query? i tryed like this, this.catagoryList.DataContext = ...
2
votes
2answers
154 views

How to create a property (collection) expression selector from a string?

I wanted to transform the string "Employee.Orders.OrderID" in the linq expression: "employee.Orders.Select(order => order.OrderID)". I already know how to do this in simple properties such as ...
0
votes
0answers
52 views

dynamic linq let

I want to know if there's a way to use let in dynamic linq. I've got a class, which is in the database, that has a list of object, in the database too. I want to do a query with clause let like this ...
1
vote
2answers
337 views

Dynamic Linq Conditional Select

var Data = from z in initialData select new { z.ID, z.Value = (z.Col1 != null)? z.Col1 : z.Col2 }; How can I convert this query to a ...
1
vote
4answers
73 views

Using Nihibernate with system dynamic linq for Query<T>

I am trying to use system.dynamic.linq to create dynamic sorting. this, is the query that I use: var query = dalSession.Query<T>().AsQueryable(); var res = (from x in query orderby ...
0
votes
1answer
254 views

Dynamic Linq Datetime where

im using dynamic linq in order to build a query and im having an issue with DateTime queryResults- contain a list of result from a previous query . sr.FromDate- a DateTime parameter what im ...
0
votes
1answer
215 views

Some Expressions for Dynamic LINQ [closed]

I have wrote such example for AutoCAD: // Dynamic LINQ: // http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx using System; using ...
0
votes
0answers
146 views

Dynamic LINQ nested selects

I'm trying to come up with a Dynamic LINQ query that will let me select properties from nested entity collections. I want to get a list of roles with some associated user information for each role. I ...
0
votes
2answers
38 views

How do I merge objects back together after a SelectMany in System.Linq.Dynamic or maybe different solution all together?

I'm trying to select out a couple of fields in a collection inside of collection. Roles->Users (name and ID) I was able to get flattened data using select many, but now I need to merge it back to a ...
0
votes
1answer
165 views

Dynamic linq expression for EF

I'm trying to write some dynamic linq expression for my EF app. I have an enum that represents a type: public class MyEntity { public int? One { get; set; } public int? Two { get; set; } ...
0
votes
0answers
218 views

System.Linq.Dynamic to select a collection inside of a collection from Entity Framework IQueryable

I have an EF model with the relationship User->Roles. It's a one to many relationship in our database. I would like to select the ID from role's record and the name from the user's records. What I ...
0
votes
2answers
236 views

Dyamic Linq .Net 4 error 'userid' could not be resolved in the current scope or contex

I am trying to use Dynamic Linq library in my code, but it gives this error 'UserId' could not be resolved in the current scope or context. Make sure that all referenced variables are in scope, ...
0
votes
0answers
274 views

Entity Framework PredicateBuilder Dynamic Linq OR citeria

In my ASP.NET 4.0 web application my 'findItem' method is inside the SelectMethod of ObjectDataSource. I'd like to search items in database with different search criteria based on user interactions. ...
0
votes
1answer
209 views

Select a listview item as object

I got a ListView control that contains a GridView control too. Data are comming from different Table from database Database scheme: Books (BookID, BookName, ISBN, CopyLeft); Borrowers (BorrowerID, ...
0
votes
2answers
330 views

Join multiple table and bind into a single Listview using C# .net

I got three tables to join named Books, Borrowers and Transactions. The database scheme is as below: Books(BookID,BookName,ISBN); Borrowers(BorrowerID,BorrowerName,BorrowerLevel); ...
1
vote
1answer
430 views

Dynamic LINQ Compare Dates in Entity Framework

I am using the dynamic linq library with entity framework and want to compare dates. I have succesfully extended the library based on the following SO article here However what I can not seem to do is ...
0
votes
1answer
332 views

Scott Gu Dynamic Linq Convert Datetime to ShortDatetime

I am using the Scott Gu Dynamic Linq class and I am trying to convert a datetime to return a short datetime before databinding the result set to a gridview in ASP.net. Now, I know that I can go ...
0
votes
2answers
88 views

Using Linq DynamicQuerable for a Not IN sql type operation

I am using the Linq DynamicQuerable code. I have an array of integers and a string representing the field I want to use as the excluding filter. For example IQuerable ...

1 2 3 4 5