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 so I’ve attached those along with the few slides I showed for the Webinar.  If you have suggestions about future Webinars that you’d like to see please let me know.

Technologies demonstrated in the sample code include:

  • LINQ to Objects
  • LINQ to DataSets
  • LINQ to SQL (Website with examples of using LINQ, Lambdas and stored procedures to select, insert delete and update data)
  • LINQ to Entities (Website with examples of using LINQ, Lambdas and stored procedures in conjunction with the Entity Framework)

Sample Code Download

 

Logo For more information about online and video training solutions for .NET, SharePoint or Silverlight please visit http://www.TheWahlinGroup.com.
Published Thursday, February 05, 2009 12:02 PM by dwahlin

Comments

# re: Code Samples from the LINQ and .NET 3.5 Webinar

Thursday, February 05, 2009 3:04 PM by Monty

This was a great webinar. Will get me to check out Linq more.

Thx - Monty

# re: Code Samples from the LINQ and .NET 3.5 Webinar

Thursday, February 05, 2009 3:50 PM by dwahlin

Thanks Monty.  Glad you enjoyed it.

# Code Samples from the LINQ and .NET 3.5 Webinar - Dan Wahlin's WebLog

Friday, February 06, 2009 1:18 AM by Web Development Community

You are voted (great) - Trackback from Web Development Community

# re: Code Samples from the LINQ and .NET 3.5 Webinar

Tuesday, February 10, 2009 7:53 PM by Rich Thomas

Dan, enjoyed the LINQ Webinar.  Thank you for supplying the source code for your examples.  Any chance you could supply the source to the Northwind stored procs you used in your examples?  I'm not so hot with SQL Server stored procs.  Thanks!

# re: Code Samples from the LINQ and .NET 3.5 Webinar

Monday, March 02, 2009 1:47 PM by philoushka

Hi Dan

Thanks for the samples from this LINQ webinar. I enjoyed this webinar, and have been following your blog since DevConnections in Nov 2008.

I am wondering about unit testing with your architecture. Can you present an article or perhaps another webinar with some examples using this architecture? I am specifically interested in separating the unit tests from the integration tests, mocking the DB. e.g. My BOL is usually just a layer between the Presentation and Data layers. I am wondering if I hook up my unit tests to the BOL?

I really WANT to write good unit tests to run during the build on my Continuous Integration server (CruiseControl.NET). I am struggling with the amount of work that I think I need to do within all my CRUD unit tests. (insert a row, test for its existance, did it write all the attributes properly, etc.) Perhaps I am missing a few best practices.

Looking forward to any comments.