Tagged 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. 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)

19
votes
1answer
646 views

How do I do a left outer join with Dynamic Linq?

I am trying to mimick the left outer join here but using dynamic linq extension methods. What i have: public static IQueryable SelectMany(this IQueryable source, string selector, string ...
11
votes
2answers
139 views

Is Injection Possible through Dynamic LINQ?

Using the Dynamic LINQ library (link), is it vulnerable to injection? and (if so) how can this be protected against? Some background from Security Considerations (Entity Framework): LINQ to ...
10
votes
1answer
114 views

Dynamic linq and operator overloads

Consider the code below: var vectorTest = new Vector2(1, 2) + new Vector2(3, 4); // Works var x = Expression.Parameter(typeof(Vector2), "x"); var test = System.Linq.Dynamic ...
8
votes
3answers
9k views

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","Fund 1","NY",100)); table1.Rows.Add("Company 2","Fund ...
8
votes
3answers
701 views

Dynamic LINQ with direct user input, any dangers?

I have a table in a ASP.NET MVC application that I want to be sortable (serverside) and filterable using AJAX. I wanted it to be fairly easy to use in other places and didn't feel like hardcoding the ...
7
votes
2answers
2k views

LINQ Dynamic Query Library

I am building an ASP.Net MVC 3 application with Entity Framework 4. When the two pieces of code below are executed, both variables (query1 and query2) have a return type of ...
6
votes
4answers
17k views

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. Consider the following situation : var query = from c in ...
5
votes
3answers
151 views

How dynamic can I make my LINQ To SQL Statements?

I have the need to construct a LINQ To SQL statement at runtime based on input from a user and I can't seem to figure out how to dynamically build the WHERE clause. I have no problem with the ...
4
votes
2answers
147 views

Building a common set of methods that can operate on any linq table

Problem: We make extensive use of a repository pattern to facilitate read/write operations on our datastore (MS SQL using LINQ) across multiple applications and subsections of functionality. We have ...
4
votes
3answers
988 views

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, if a user wants to search by city or search by state, I would have a dynamic LINQ ...
4
votes
1answer
358 views

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 to store a specific linq query (different for each report) into database and then execute ...
4
votes
1answer
557 views

Executing DynamicExpression with unknown types

If anyone is very familar with the Linq.Dynamic namespace I could use some help -- couldn't find any indepth resources on the internet. Basically I'm using DynamicExpression.ParseLambda to create an ...
4
votes
3answers
1k views

Is the Specification Pattern obsolete when you can use Dynamic LINQ?

Wikipedia states that the Specification Pattern is where business logic can be recombined by chaining the business logic together using boolean logic. With respect to selecting filtering objects from ...
4
votes
3answers
6k views

Building Dynamic LINQ Queries based on Combobox Value

I have a combo box in Silverlight. It has a collection of values built out of the properties of one of my LINQ-to-SQL objects (ie Name, Address, Age, etc...). I would like to filter my results based ...
3
votes
3answers
75 views

Dynamic linq: Is there a way to access object data by index?

I need some in-memory filtering with Dynamic Linq. My objects have only a indexer: public object this[int index] { } The access to my data is like: object[0], object[1],... So my query is like ...
3
votes
1answer
321 views

VB.NET and the System.Linq.Dynamic namespace

I would use the System.Linq.Dynamic. I added the specified Dynamic.vb file, that starts like this : Option Strict On Option Explicit On Imports System.Collections.Generic Imports System.Text ...
3
votes
1answer
381 views

LINQ DynamicLibrary: How to extract count and list from IQueryable

I have started experimenting a bit with the LINQ DynamicLibrary. I am trying to replace a bunch of LINQ statements with a few or just one Dynamic LINQ query. My existing static query is as follows: ...
3
votes
2answers
176 views

Dynamic query to immediate execute?

I am using the MSDN Dynamic linq to sql package. It allows using strings for queries. But, the returned type is an IQueryable and not an IQueryable<T>. I do not have the ToList() method. How ...
3
votes
5answers
963 views

Dynamic LINQ on a collection?

I've a project which ask me to do such a BIG search engine but which is all dynamic. I mean I can have about 0 to 9 main "group" which have inside something like an infinite possibility of "where" ...
3
votes
1answer
561 views

How to name fields using Dynamic Linq?

I have a huge query that is being made dynamically, but I want the select statement to not output the column names, buut custom values. FOr example, if I am doing a normal Linq query, I can do ...
2
votes
1answer
42 views

HowTo use Dynamic linq with an index instead of a property name

I have an ICollection with objects: private ObservableCollection<ViewItem> items; The viewItems have no properties. The data will be accessed via an index with public object this[int ...
2
votes
3answers
78 views

Dynamic Linq - Perform a query on an object with members of type “dynamic”

I am trying to use a dynamic linq query to retrieve an IEnumerable<T> from an object collection (Linq to Object), each of the objects in the collection have an internal collection with another ...
2
votes
2answers
42 views

How can I sort a list based on a user's selections in ASP.NET MVC?

I have a list of customers that can be sorted by anywhere from 1 to 6 fields based on a user's selection. The sort fields can be in any order. If I know the fields and the sequence ahead of time, ...
2
votes
2answers
137 views

Dynamic LINQ: Specifying class name in new clause

With Dynamic LINQ, what changes need to be done to have fields of the given class? For example, how can the following C# query be reproduced in DLinq: var carsPartial = cars.Select(c => new ...
2
votes
1answer
86 views

LINQ (Dynamic): OrderBy within a GroupBy using dynamic linq?

I had the following query using normal linq and it was working great (using anonymous type), var result = from s in Items group s by s.StartTime into groupedItems select ...
2
votes
1answer
109 views

Type arguments cannot be inferred from usage, Can anyone help please?

I am trying to use Dynamic Linq (the one published by ScottGu) to do a GroupBy (lambda expression). I have an object. And i am doing AsQueryable. THis is what i have.. var result = ...
2
votes
1answer
57 views

Linq Expressions does not find a public method… :-/

I write a expression that will test if a property(enum) of a object have, or have not some flags set. The code bellow test if the validity of an object "contains" or not Monday, using the HasFlag ...
2
votes
2answers
229 views

Dynamically select and update a column value in LINQ resultset

I have a scenario in which there exists a LINQ resultset; I used the following query var stockDetails = from d in db.BloodBanks where d.bbUserName == Session["username"].ToString() ...
2
votes
1answer
494 views

Dynamic LINQ GroupBy question

I am using Dyanmic LINQ from the VS2010 code samples as I am trying to create a LINQ groupby expression. I want to allow the user the possibility to select at runtime the properties to group on/by as ...
2
votes
4answers
355 views

Dynamic Linq: How to specify the StringComparison type?

I'm working on doing some custom filtering and sorting of a dataset, based on a collection of sort fields sent from the client browser, and am using Dynamic Linq to achieve (most of) the desired ...
2
votes
2answers
2k views

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. Basically I have a bunch of dropdownlists that apply groupings and I don't want ...
2
votes
1answer
172 views

How to do Linq on ITypedList?

So far, I find Linq can be used on existing fields and properties of a class, not on virtual properties. In other words, ITypedList can not work with Linq, even by dynamic Linq. I tried the following ...
2
votes
2answers
313 views

Query File System Info Dynamically using LINQ

I need to be able to return a list of files that meet some dynamic criteria. I've tried to do this using LINQ. I've found that it is possible to use dynamic LINQ using the System.Linq.Dynamic ...
2
votes
1answer
224 views

Dynamic Linq help, different errors depending on object passed as parameter?

I have an entityDao that is inherbited by everyone of my objectDaos. I am using Dynamic Linq and trying to get some generic queries to work. I have the following code in my generic method in my ...
2
votes
1answer
2k views

How to do the following in Dynamic Linq using System.Linq.Dynamic namespace

I just want to know how to do the following in Dynamic Linq using System.Linq.Dynamic namespace var query2 = db.Customers.Select( cust => new Customer { ...
2
votes
6answers
1k views

LINQ Dynamic Expression API, predicate with DBNull.Value comparison

I have an issue using the Dynamic Expression API. I cannot seem to compare a DataTable field against DBNull.Value. The API is supposed to be able to "support static field or static property access. ...
2
votes
1answer
792 views

DLINQ- Entities being inserted without .InsertOnSubmit(…)?

I ran into an interesting problem while using DLINQ. When I instantiate an entity, calling .SubmitChanges() on the DataContext will insert a new row into the database - without having ever called ...
1
vote
1answer
89 views

LINQ Dynamic Query Library setup

I am having trouble setting up this Dynamic Linq Library so i can use Dynamic where clauses. Can someone advise me onhow to add this library to my project and reference correctly. ...
1
vote
1answer
70 views

ObservableCollections using Rx with APE/Reverse Ajax - Pushing from the Server

Just wondering if there was a commonly used method to notify subscribers (javascript clients) of observable collections (Rx/Knockout.js) of changes on the server side. I'd like to have an object ...
1
vote
4answers
121 views

How to make query without having generic type?

I'll start with piece of code: var objectType = typeof(Department); // Department is entity class from linqdatacontext using (var dataContext = new DataModel.ModelDataContext()) { var entity = ...
1
vote
1answer
206 views

Dynamic linq - Group by interval (DateTime, Numeric)

I search everywhere and didn`t find anwser for this question. I want to group by intervals (DateTime, Numeric) in Dynamic linq (the data will be crated dynamically so i must use dynamic linq) Lets ...
1
vote
2answers
184 views

How to use Enums with Dynamic Linq?

I would like to use enumerations in my dynamic LINQ queries. Is it possible, and if, how? Consider the code bellow: using System; using System.Collections.Generic; using System.Linq; using ...
1
vote
1answer
132 views

Dynamic Linq query on a collection of a base type while accessing type specific properties

How can I run a dynamic LINQ query on a collection of a base type (like the IPerson interface) but access implementation specific properties (like Age). I can be sure that all items in the collection ...
1
vote
0answers
204 views

Dynamic Expression API: I can do a predicate, how to code an OrderBy Specification?

I figured out how to do a predicate from a string supplied by a client based on Dynamic Linq (this is wrapped in a Specification object): return ...
1
vote
2answers
171 views

dynamically append multiple linq expressions at run-time

I have two similar methods that take a criteria object (dumb object with a list of properties), call a "CreateExpression" method on that criteria object, and then use the returned expression to filter ...
1
vote
3answers
207 views

Use Any() and Count() in Dynamic Linq

I am trying to write dynamic Linq Library query to fetch record on condition, Customers who has order count is greater than 3 and ShipVia field equal 2. Below is my syntax what i have tried. ...
1
vote
1answer
220 views

Extension Method To Take A Dynamically Built Search Expression?

I think we are basically looking for a extension method that could take in an IQueryable and return an IQueryable based on an entire query statement and not just the where statement. Example of what ...
1
vote
1answer
345 views

Dynamic Linq Search Expression on Navigation Properties

We are building dynamic search expressions using the Dynamic Linq library. We have run into an issue with how to construct a lamba expression using the dynamic linq library for navigation properties ...
1
vote
2answers
218 views

LINQ: Build a where clause at runtime to include ORs ( || )?

I need to build a where clause at runtime but i need to do an OR with the where clause. Is this possible .. Let me explain.. here my code..., basically "filter" is a enum Bitwise, son hence filter ...
1
vote
0answers
434 views

Filtering DataGrid, MVVM, Dynamic LINQ

How can I filter my DataGrid items like MS Access filter works (just select by mouse some part of cell and press "Filter" button)? I have ViewModel MyViewModel with 2 Commands (Filter and ...

1 2 3