7
votes
3answers
358 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 …
3
votes
2answers
343 views
System.LINQ.Dynamic: Select(” new (…)”) into a List<T> (or any other enumerable collection of <T>)
Hi All,
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
votes
5answers
203 views
Dynamic LINQ on a collection?
Hi there,
I've a project which ask me to do such a BUG 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 …
2
votes
3answers
1k 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 …
1
vote
2answers
125 views
dynamically create lambdas expressions + linq + OrderByDescending
how can I create a dynamic lambda expression to pass to use in my orderby function inside linq? I basically want transform "queryResults.OrderByDescending();" in …
1
vote
2answers
88 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 …
1
vote
3answers
151 views
Null Reference Exception in a Dynamic LINQ Expression
I am using the Dynamic Linq Library / Sample from Microsoft to do ordering on a list. So for example I have the following C# code:
myGrid.DataSource=repository.GetWidgetList()
…
1
vote
3answers
299 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. …
1
vote
4answers
599 views
LINQ Query or stored procedure to return max value in a stated column
Table like
datetime a1 b1 x2 ...
07-01-2009 13:10 8 9 10
07-01-2009 13:11 8 8 2
07-01-2009 13:12 9 1 1
1 row per second for a whole day (=86400 rows); …
1
vote
2answers
280 views
Dynamic Linq - Setting orderby expression type at runtime
I'm using dynamic Linq and have the where clauses working. Now I'm looking to add orderby clauses but am having a problem being able to set the type of the dynamic expression. Below is working code …
1
vote
1answer
80 views
How can I supply a table name at runtime using LINQ to SQL?
I have to use LINQ to SQL and along with it a pure SQL classic query. And this SQL query has the Table from where my data will be generated, but I will not know this Table previously. It will be known …
1
vote
1answer
262 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 …
1
vote
5answers
2k 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 …
0
votes
1answer
118 views
Dynamic LINQ API - SQL Convert Function
I'm trying to use a Dynamic LINQ Query to query a SQL database, and in the Where clause I need to evaluate an '=' condition with a field that is of type TEXT.
Right now, I've got this:
var result = …
0
votes
1answer
137 views
Make a dynamic query with Linq using a drop down list selected option in Asp.net MVC
Hi everyone!
I'm trying to accomplish this with Linq to Sql and Asp.Net MVC:
I have a Drop Down List with options Country, City and State. And beside it, there is a textbox. So, an user will, for …
