Enabling Seamless Linq Features in Your Projects

  1. Install Seamless Linq Core. It can be downloaded here.
  2. Create new solution/project in Visual Studio 2008.
  3. Add reference to Seamless Linq Core.
  4. Add "LINQ to SQL Classes" item to your project.
  5. Fill it with tables and relations needed.
  6. Instantiate generated DataContext as showed bellow:
    SeamlessDataContext sdb = new SeamlessDataContext();
  7. ...and you are ready to use all features of Seamless Linq now!
var updateQuery = from d in sdb.Details
                  where d.DetailType.DetailTypeName == "Mouse"
                  select new Detail(d){ Count = d.Count + 10 };
sdb.Details.Update(updateQuery);



Additional Information:
Getting started
Examples
SQL Server Database used in the examples
References:
Seamless Design: Impedance Mismatch Revisited
Latest News
January, 29, 2008
Seamless Linq presented at CTDOTNET event.
read more
December, 3, 2007
Seamless Linq is integrated with Visual Studio 2008 Release.
read more
October, 29, 2007
Website is redesigned.
read more
October, 25, 2007
Code generation utility is integrated with Visual Studio.
read more
October, 12, 2007
Seamless Linq is integrated with Visual Studio 2008 Beta2.
read more

All news

Copyright 1999-2007 AVIcode Consulting