Posts
293
Comments
27
Trackbacks
206
More LINQ
I really should read my blog feeds before posting. Scott has just posted a good article about LINQ in ASP.NET "Orcas" with some good examples. However, I'm still worried about SQL style syntax in code - where should it go? Should we abstract it into a separate layer? Should we not have stored procedures anymore? I think sprocs will be quicker than equivalent LINQ query, although I have no figures to substantiate that. SQL is very, very good at set based operations and coupled with compiled query plans is the fasted way to select data in SQL Server. I don't beleive we should abandon this and move our query out of the database.
[Listening to: Bob Harris Saturday - - ]
posted on Monday, May 15, 2006 9:05 AM Print
Comments
# RE: More LINQ
James.ToString()
5/15/2006 12:27 PM
# re: More LINQ
Doug Reilly
5/24/2006 5:09 PM
I believe that you can still use SP's with LINQ. Not sure exactly how, but you I am pretty certain you can... You set up the datasource, and then use LINQ to get the specific results you need (or iterate through all, I suppose).
Comments have been closed on this topic.