Wednesday, September 05, 2007 - Posts

Windows Live Suite

I went to install the new Windows Live Suite (see blog entry here) and fell at the first fence in that it said "Sorry, this operating system is not supported". I think what that means is that there isn't a 64-bit version of the installer at the moment. Read More

ADO.NET Entity Framework - LINQ. Getting Started.

Getting started with LINQ to Entities is relatively easy :-) Calling ObjectContext.CreateQuery<T> gives you back a ObjectQuery<T>. ObjectQuery<T> is IQueryable<T> and so we can use it for LINQ queries. That means that using a plain Read More