Tagged Questions
The asqueryable tag has no wiki summary.
19
votes
1answer
5k views
Querying DataColumnCollection with LINQ
I'm trying to perform a simple LINQ query on the Columns property of a DataTable:
from c in myDataTable.Columns.AsQueryable()
select c.ColumnName
However, what I get is this:
Could not find ...
1
vote
1answer
142 views
Query a winforms control with CheckedListBoxItemCollection.AsQueryable().Provider.CreateQuery(
I need to query a winforms control(CheckedListBoxControl) having a CheckedListBoxItemCollection which I want to query for a certain Id that is within the property "Value" of the CheckedListBoxItem.
...
0
votes
0answers
55 views
Trying to make IEnumerable of any type be AsQueryable, so I can use Dynamic Linq
I won't know what type my Enumerable contains, and I'm trying to make it AsQueryable, so I can use Dynamic Linq.
For example:
static string Query(object obj, string expression)
{
var ...
0
votes
1answer
243 views
ASP.NET MVC - Caching IQueryable Data
I found this question http://stackoverflow.com/questions/343899/how-to-cache-data-in-a-mvc-application and I'm wondering about being able to use this method with IQueryable data.
Public Function ...
0
votes
1answer
416 views
Store procedure select all fields from One table using join
I am very frustrated from linq to sql when dealing with many to many relationship with the skip extension. It doesn't allow me to use joinned queries. Not sure it is the case for SQL server 2005 but I ...