C# [rss]

LINQ to SQL - Tailoring the Mapping at Runtime

Mats has a post over here about concurrency in LINQ to SQL with a long write-up about issues that he sees in using the framework. I've not read all of it yet because the very first point that he raises sent me off on a bit of a tangent (which does not Read More

Filed Under: , ,

Video: SQL 2008 and FileStream (writing data)

Short video on working with the new varbinary (max) filestream data type in SQL Server 2008. Hover near the bottom of the player for controls. Double-Click the player for full-screen. I don't have a downloadable version at the time of writing so will Read More

Filed Under: , ,

Video: SQL 2008 and FileStream (reading data)

Short video on working with the new varbinary (max) filestream data type in SQL Server 2008. Hover near the bottom of the player for controls. Double-Click the player for full-screen. I don't have a downloadable version at the time of writing so will Read More

Filed Under: , ,

Anonymous Types & Read-Only Properties

I hadn't noticed this before; static void Main(string[] args) { var v = new { Prop1 = "A", Prop2 = "B" }; v.Prop1 = "Foo"; }   Here's the error; Read More

Filed Under: ,