subsonic3

Is the activerecord pattern built into Entity Framework 4.0?

In the past I used Sub Sonic which has the activerecord pattern baked into the framework. With Sub Sonic it was very easy to find the "dirty" fields on an update. I now have a need to create an audit table in my application that utilizes Entity Framework 4. Is there a comparable feature in EF 4 that will give me the dirty fields? Thank...

Issue using silverlight 4 as development environment

i am running visual studio 2010, and as soon I choose Silverlight 4 as build environment, it prompts me to download developer tools for silverlight 4 (http://go.microsoft.com/fwlink/?LinkId=168436) I have downloaded it multiple times and even restarted machine. Does anyone know what could be the potential issue? ...

Subsonic3 and ASP.NET MVC: Is there something like DataContext.GetTable<T>?

Right now I'm working my way thru the SportsStore exercise of Sanderson's "Pro ASP.Net MVC 2 Framework" book (page 107) and the exercise has me implementing a Repository pattern backed by a DB store using LINQ-to-SQL. I'm trying to figure out how to implement this same repository with the Subsonic ORM. The basic repository code is as fo...

Why isn't IsLoaded set to true upon Save()?

var user = new User() { Username = "a", Password = "b", }; user.Save(); Console.WriteLine(user.ID) // prints "504" Console.WriteLine(user.IsLoaded()) // prints "false" If the ID property is automatically set on Save(), I would expect IsLoaded() to also be set (to true). Why is it my responsibility to call user.SetIsL...