LINQ to Entities Create Function Import Scalar Value Missing
LINQ to Entities seems really great. It can save you a lot of time in writing unnecessary db connection code, improve the performance many fold, only connect to the db when required (lazy loading), and easy concurrency handling for you. However there is a missing feature which I found out the hard way. If you [...]
Write .NET 3.5 in a .NET 2.0 World
Wow, sweet. Use .NET 3.5 features in .NET 2.0. A quick overview how to do it. 1. Edit your .CSPROJ file and manually add another reference to System.Core Add a True This will make the compiler copy it to the BIN folder. Thats it. You can now use .NET 3.5 features