- Install Seamless Linq Core. It can be downloaded
here.
- Create new solution/project in Visual Studio 2008.
- Add reference to Seamless Linq Core.
- Add "LINQ to SQL Classes" item to your project.
- Fill it with tables and relations needed.
- Instantiate generated DataContext as showed bellow:
SeamlessDataContext sdb =
new SeamlessDataContext();
- ...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);
|
 |
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 |
|