Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • Code from My ASP.NET Connections Talks

    I finished up my talks at ASP.NET Connections yesterday and wanted to get the code posted as well as links for the additional topics covered in the Silverlight animation session.  Here they are: Building N-Tier ASP.NET Applications with LINQ Code Silverlight 2 Animations Code SilverlightFX Farseer...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 11-13-2008, 12:00 AM
    Filed under: ASP.NET, .NET, C#, Silverlight, LINQ, Lambdas
  • More on Syncronized - upgrade reader to writer

    In using my new sync wrapper to clean up a bunch of older code, I came across the need to be able to upgrade from a reader to a writer for certain operations. One example of this it to clean up expired items in my my implementation of a Cache. protected Synchronized<Dictionary<string, ICacheItem>>...
    Posted to Eddie Garmon's Weblog (Weblog) by UltimateRinger on 07-11-2008, 12:00 AM
    Filed under: Lambdas, Synchronization, C#, .NET
  • Sync Enumerator update.

    After a few more unit tests, I have fixed an issue with the GetSyncEnumerator method. The origional had 2 issues. was that the lock was being released too soon. was that a write in the middle of a long enumeration would cause a race and/or a deadlock. The fix was to 'write' lock for enumeration, and...
    Posted to Eddie Garmon's Weblog (Weblog) by UltimateRinger on 06-30-2008, 12:00 AM
    Filed under: Lambdas, Synchronization, C#, .NET
  • Synchronization, ReaderWriterLockSlim, and Lambdas

    Here is a synchronization wrapper that I wrote to wrap any object, and an implementation of a SynchronizedDictionary to show how to use it. I offer this code as-is without any waranty to fitness, to the public domain, for any purpose you see fit. Get a text version of this code here. On with the show...
    Posted to Eddie Garmon's Weblog (Weblog) by UltimateRinger on 06-27-2008, 12:00 AM
    Filed under: Lambdas, Synchronization, C#, .NET
  • Service Pack 1 Beta Released for Visual Studio 2008 and the .NET Framework 3.5

    Microsoft just released the SP1 beta for Visual Studio 2008 and the .NET Framework 3.5 and it includes a huge number of new features and enhancements.  Check out Scott Guthrie's blog for details but here's a quick list of what's included: ASP.NET Data Scaffolding Support (ASP.NET Dynamic Data) ASP...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 05-12-2008, 12:00 AM
    Filed under: XML, ASP.NET, Web Services, ASP.NET AJAX, .NET, C#, WCF, WPF, VS.NET, LINQ, Lambdas
  • Using LINQ to Perform "WHERE IN (Value1,Value2)" Queries

    I recently needed to select a few products from a database where the product ID matched up with a list of IDs.  That's easy to do with a normal SQL statement since you can use the "WHERE IN (Value1,Value2)" clause to find what you need.  However, I wanted to do it with LINQ in this...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 05-09-2008, 12:00 AM
    Filed under: .NET, C#, LINQ, Lambdas
  • Orlando 2008 DevConnections Talks

    I'm in Orlando this week speaking at the DevConnections conference on 3 different topics.  It's my personal favorite as far as conferences go and features a lot of cool technologies, people and events.  This week I'm covering custom ASP.NET AJAX controls, building N-Layer applications that...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 04-22-2008, 12:00 AM
    Filed under: XML, ASP.NET, Web Services, ASP.NET AJAX, .NET, C#, WCF, Silverlight, LINQ, Lambdas, Sockets
  • Building an N-Layer ASP.NET Application with LINQ, Lambdas and Stored Procedures (Updated)

    Update: I refactored some of the code and also did a better job ensuring Dispose() is called everywhere so that the DataContext object gets cleaned up properly. Download the Application Here .NET 3.5 has a lot of great new features that can significantly enhance developer productivity. I've been spending...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 02-28-2008, 12:00 AM
    Filed under: ASP.NET, ASP.NET AJAX, .NET, C#, Architecture, LINQ, Lambdas
  • Code Samples from the LINQ and .NET 3.5 Webinar

    Thanks to everyone who attended the Maximizing Productivity with LINQ Webinar today and to ROI for putting it on.  We had a great turnout and covered a bunch of technologies in an hour.  I didn’t have time to go through the more detailed examples I had of using LINQ to SQL and Entity Framework...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 02-05-2009, 12:00 AM
    Filed under: .NET, C#, LINQ, Lambdas, Entity Framework
  • DevConnections Orlando Talks on Silverlight and LINQ/Entity Framework

    I had a great time speaking at DevConnections in Orlando this year.  A lot of fun people were there and I had the opportunity to talk with several of them about some of the applications they were building.  As promised, here’s the code and slides for my talks. Getting Started with Silverlight...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 03-26-2009, 12:00 AM
    Filed under: ASP.NET, Web Services, .NET, C#, WCF, Silverlight, LINQ, Lambdas, Visual State Manager, Animations, Entity Framework
Page 1 of 2 (15 items) 1 2 Next >