Dino Esposito's WebLogSolid Architecture for Quality ASP.NET AJAXArticle on DotNetSlackers- May 18, 2008 Another article on DotNetSlackers discussing LINQ-to-SQL objects and how to cache them and reuse them across different DataContext objects.Read the full story here. http:dotnetslackers.comarticlescsharpObjectsAndStateTrackingInLINQToSQL.aspxhttp://weblogs.asp.net/despos/archive/2008/05/18/article-on-dotnetslackers.aspx Dispatch my stuff to the right thread- May 12, 2008 Silverlight 2 does support threads through much of the same API as the big .NET FX. So you use classes in System.Threading such as Thread and ThreadPool. Or you can use the higher-level BackgroundWorker type from System.ComponentModel. This is anyway the recommended approach. private void btnWorker_Click(object sender, RoutedEventArgs e) _bkgndWorker = new BackgroundWorker(); _bkgndWorker.DoWork += new DoWorkEventHandler(_bkgndWorker_DoWork); ...http://weblogs.asp.net/despos/archive/2008/05/12/dispatch-my-stuff-to-the-right-thread.asp... It's long way to ... Dublin- May 6, 2008 Coming to Dublin in just a few weeks (May 27) for a full day of public, 9-to-5, LINQ, LINQ-to-SQL from ASP.NET and Silverlight. Read all details here. A pattern-oriented look at LINQ and LINQ-to-SQL from within Web and Silverlight applications We'll start the day with a 10,000 look at LINQ. Hey, I can hear some of you complaining that it is just the "usual" boring stuff about LINQ being so cool etc. Things that you've probably heard a zillion times. Well, sort of. As Don Box told me..http://weblogs.asp.net/despos/archive/2008/05/06/it-s-long-way-to-dublin.aspx |