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 …
5
votes
Named string formatting in C#
The framework itself does not provide a way to do this, but you can take a look at this po …
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 …
0
votes
.Net 3.5 SP1 official update rollout?
Follow up: the update is available in Windows Update, it appears as "Microsoft .NET Framework 3.5 SP1 Family Update" or such.
…
7
votes
Delivery of .Net 3.5 SP1
The .Net Framework 3.5 SP1 redistributable (the one that's around 230MB) contains everything (2.0 + SP1 + SP2, 3.0 + SP1 + SP2, 3.5 + SP1) in all supported architectures (x86, x64, ia64). T …
4
votes
How can I convert anonymous type to strong type in LINQ?
I see nobody has addressed your need to convert an anonymous type to a named type explicitly, so here goes... By using "select new { }" you are creating an anonymous type, but you don' …
2
votes
LINQ on the .NET 2.0 Runtime
Short answer:
LINQ to Objects: yes (IEnumerable<T>)
LINQ to SQL/Entities: no (IQueryable<T>)
…
