2
votes
Doing a Cast Within a LINQ Query
Depending on what you are trying to do, one of these might do the trick:
List<Line> parentLineList1 =
(from t in content.ChildControls.OfType<TabSection>()
from p i …
0
votes
LinqtoSQL filter and order by syntax
You can add an order by clause like this:
var advisors = from adv in _context.Advisors
join advisoroffice in _context.OfficeAdvisors
on adv.AdvisorI …
0
votes
Filter linq list on property value
Just for completeness (and maybe it's easier to read?), using a "where" similar to Matt's "join":
var matches = from o in customObjectList
from i in intList
…
0
votes
Does LINQ’s ExecuteCommand provide protection from SQL injection attacks?
LINQ to SQL uses *exec_sql* with parameters, which is much safer than concatenating into the ad-hoc query string. It should be as safe againt SQL injection as using SqlCommand and its Paramaters co …
2
votes
How do you add dynamic ‘where’ clauses to a linq query?
Here's one way of adding a variable number of where clauses to your LINQ query.
Note that I haven't touched your bitmask logic, I just focused on the multiple wheres.
…
3
votes
LINQ inner join betwenn Enumerable and DB Table
Local collections can be used in LINQ to SQL with the Contains() method. You can try changing the join clause into a where with Contains():
var itemsToDelete = fro …
0
votes
How do I get the max data size of every column in an IQuerable using LINQ
You said for each "column", that would map to each property. In Linq to Objects, this should work, although too manual:
var lengths = from o in myObjectCollection
sele …
2
votes
Fetching items which has a specific set of child elements (advanced query - possible?)
This should work for you:
string[] criteria = new[] { "Car", "Ford", "Offroad" };
var items =
from i in db.Item
let wantedMetas = db.Meta.Where(m => criteria.Contains(m …
5
votes
Using LINQ how do I have a grouping by a “calculated field”
How about grouping by x.Year/10? (haven't tested this!)
var results = (from x in ctx.Items
group x by (x.Year / 10 * 10) into decades
orderby decades.C …
1
vote
How to delay loading aproperty with linq to sql external mapping?
I believe you would have to do something like what Daniel Schaffer said in code, but without the [Column] attribute, since you would define the mapping in the XML file.
…
2
votes
Trying to change properties of an IQueryable collection
Brandon, this is a normal mistake when using LINQ. See, the IQueryable returned from LINQ does not actually contain your items, that's why you can't index into it. It has only enough information to …
5
votes
Performing part of a IQueryable query and deferring the rest to Linq for Objects
Both of the previous answers work, but it reads better if you use AsEnumerable() to cast the IQueryable to IEnumerable:
// Using Bob's code...
var result = datacontext.Table
.Whe …
0
votes
LINQ for LIKE queries of array elements
IEnumerable.Contains() translates to SQL IN as in:
WHERE 'american airlines' IN ('airline', 'railroad') -- FALSE
String.Contain …
8
votes
Linq - How to aggregate the results of another query
This solution iterates the list only once with Aggregate(), but for empty lists it will return the seed value. By the way, the seed values are int.MaxValue and int.M …
1
vote
LINQ to SQL and Join two tables with OR clause
This is happening because you are doing a "first pass" which filters the plans and documents that match your predicates, and then joining those results only, effectively doing an AND …
