LINQ to SQL
Tag details
Welcome to the 'LINQ to SQL' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'LINQ to SQL'.
Latest blogosphere posts tagged “LINQ to SQL”
-
OakLeaf Blog Analytics for November 2009
OakLeaf Systems —
Authority: 467
I’ve decided to post monthly reports of the OakLeaf Blog’s traffic in order to spot trends. The analytics so far show little difference month to month for the year 2009, although a controversial post occasionally raises weekly traffic by as much as 50%. Here’s Google Analytics’ default report for the ...4 days ago -
SQL Server Query Plan cache – what is it and why should you care?
DamienG —
Authority: 391
What is a query plan? SQL Server like all databases goes through a number of steps when it receives a command. Besides parsing and validating the command text and parameters it looks at the database schema, statistics and indexes to come up with a plan to efficiently query or change your data. You can view the plan ...2 weeks ago -
Universal Get () accessor for any Linq-to-SQL Table
naspinski —
Authority: 109
never write a Linq-to-SQL Get accessor again I dont even want to know how many times I have written something like this: var p = db.Products.FirstOrDefault(x => x.Id == someId); Then 4 lines down, do it again almost exactly the same, over and over, at least once for each table.Well... no more! Now that I am able ...2 weeks ago -
NServiceBus - Linq To SQL Saga Persister Part 2.0
Living in the Tech Avalanche Generation —
Authority: 115
In a previous post I showed in part what it would take to create a Saga Persister using LINQ To SQL, however it wasn’t the complete story, therefore I decided on creating two new complete persisters to demonstrate how to use the extensibility points provided by NServiceBus to create a persistence mechanism for ...3 weeks ago -
Get the Primary Key PropertyInfo of any Linq-to-SQL Table
naspinski —
Authority: 109
Easily find any tables Primary Key property In my search for a universal generic Get() accessor for Linq-to-SQL DataContexts, I figured I would have to dynamically find the primary key of a table.Using Reflection and the Attributes applied to L2S tables, it is not difficult at all: //get the primary key ...3 weeks ago

