Search Results

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

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 …
14
votes

C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008

You can use any new C# 3.0 feature that is handled by the compiler by emitting 2.0-compatible IL and doesn't reference any of the new 3.5 assemblies: Lambdas (used as Func<.. …
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 …
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. …
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 …
5
votes

Most useful free .NET libraries?

Dependency Injection: Ninject Web MVC framework: ASP.NET MVC …
0
votes

How do you specify what a default state of a derived struct should be in C#?

Just for completeness: Value types in C# (including arrays, structs, enums) are always initialized to all zeros. Reference types are also initially zero, better know as null. …
1
vote

The || (or) Operator in Linq with C#

If you are using LINQ to SQL, you cannot expect the same C# short-circuit behavior in SQL Server. See …
0
votes

which one would you use to draw stuff on a winform? Format32bppRgb or Format24bppRgb or something else?

As you quoted from the documentation, Format32bppRgb will use the same 24-bits per pixel and the other 8 bits are not used, so why would you go with Format32bppRgb if it only wastes bits. It probab …
0
votes

What API call would I use to change brightness of laptop (.NET)?

I looked up John Rudy's link to …
2
votes

remove from a List<T> within a foreach

Update: Added for completeness As several have answered, you shouldn't modify a collection while iterating it with GetEnumerator() (example foreach). The framework prevent you …
0
votes

What extra steps do you take when creating MSI installers for Vista?

I have had some (3rd party) MSI's which won't install correctly unless I force elevated mode from the start, even if they show a UAC prompt later in the process. Troubleshooting... I assume …

1 2 next
15 30 50 per page