Reputation: 1025
I'm playing a bit with LINQ to SQL and overall it's a much better option than what Microsoft had before (DataSet), but it seems that object-oriented capabilities are still limited. Since we currently use a custom persistence framework that created a OO model on top of DataSet, I'm looking to port the framework to a new version building a OO Model on top of LINQ to SQL.
Upvotes: 2
Views: 750
Reputation: 1975
I´ve made of test of this in my project project. Take a look at:openticket.codeplex.com
Upvotes: 0
Reputation: 56876
Rob Conery is developing a new type of repository pattern in his store front series. AFAIK, it uses OO object over LINQ to SQL. It contains a lot of talk about MVC and TDD but it's still worth a watch to see what he's doing with LINQ to SQL.
Upvotes: 0
Reputation: 32831
For # 1, you may be looking for the newer Linq to Entity. Here's one place to start: http://msdn.microsoft.com/en-us/library/aa697427(VS.80).aspx
Upvotes: 1