How do you extend Linq to SQL? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T06:29:50Zhttp://stackoverflow.com/feeds/question/62963http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql8How do you extend Linq to SQL?George Tsiokos2008-09-15T13:41:40Z2008-09-16T19:15:18Z
<p>Last year, Scott Guthrie <a href="http://weblogs.asp.net/scottgu/archive/2007/07/31/linq-to-sql-debug-visualizer.aspx" rel="nofollow">stated</a> “You can actually override the raw SQL that LINQ to SQL uses if you want absolute control over the SQL executed”, but I can’t find documentation describing an extensibility method.</p>
<p>I would like to modify the following LINQ to SQL query:</p>
<pre>using (NorthwindContext northwind = new NorthwindContext ()) {
var q = from row in northwind.Customers
let orderCount = row.Orders.Count ()
select new {
row.ContactName,
orderCount
};
}</pre>
<p>Which results in the following TSQL:</p>
<pre>SELECT [t0].[ContactName], (
SELECT COUNT(*)
FROM [dbo].[Orders] AS [t1]
WHERE [t1].[CustomerID] = [t0].[CustomerID]
) AS [orderCount]
FROM [dbo].[Customers] AS [t0]</pre>
<p>To:</p>
<pre>using (NorthwindContext northwind = new NorthwindContext ()) {
var q = from row in northwind.Customers.With (
TableHint.NoLock, TableHint.Index (0))
let orderCount = row.Orders.With (
TableHint.HoldLock).Count ()
select new {
row.ContactName,
orderCount
};
}</pre>
<p>Which <em>would</em> result in the following TSQL:</p>
<pre>SELECT [t0].[ContactName], (
SELECT COUNT(*)
FROM [dbo].[Orders] AS [t1] WITH (HOLDLOCK)
WHERE [t1].[CustomerID] = [t0].[CustomerID]
) AS [orderCount]
FROM [dbo].[Customers] AS [t0] WITH (NOLOCK, INDEX(0))</pre>
<p>Using:</p>
<pre>public static Table<TEntity> With<TEntity> (
this Table<TEntity> table,
params TableHint[] args) where TEntity : class {
//TODO: implement
return table;
}
public static EntitySet<TEntity> With<TEntity> (
this EntitySet<TEntity> entitySet,
params TableHint[] args) where TEntity : class {
//TODO: implement
return entitySet;
}</pre>
<p>And</p>
<pre>
public class TableHint {
//TODO: implement
public static TableHint NoLock;
public static TableHint HoldLock;
public static TableHint Index (int id) {
return null;
}
public static TableHint Index (string name) {
return null;
}
}</pre>
<p>Using some type of LINQ to SQL extensibility, other than <a href="http://blogs.msdn.com/mattwar/archive/2008/05/04/mocks-nix-an-extensible-linq-to-sql-datacontext.aspx" rel="nofollow">this one</a>. Any ideas?</p>
http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql/64612#646120Answer by tenshihan for How do you extend Linq to SQL?tenshihan2008-09-15T16:48:59Z2008-09-15T16:48:59Z<p>DataContext x = new DataContext;</p>
<p>//Something like this perhaps?</p>
<p>var a = x.Where().with()...etc </p>
<p>let's you have a much finer control over the sql.</p>
http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql/64814#648140Answer by David B for How do you extend Linq to SQL?David B2008-09-15T17:13:49Z2008-09-16T19:15:18Z<p>You want to translate an expression tree into SQL... You need to implement your own IQueryProvider</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.linq.iqueryprovider.aspx" rel="nofollow">IQueryProvider Reference</a><br>
<a href="http://blogs.msdn.com/mattwar/archive/2007/07/30/linq-building-an-iqueryable-provider-part-i.aspx" rel="nofollow" title="How To">How To</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb546158.aspx" rel="nofollow">MSDN How To</a></p>
http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql/67999#679993Answer by DamienG for How do you extend Linq to SQL?DamienG2008-09-15T23:42:05Z2008-09-15T23:42:05Z<p>The ability to change the underlying provider and thus modify the SQL did not make the final cut in LINQ to SQL.</p>
http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql/69827#698270Answer by KristoferA for How do you extend Linq to SQL?KristoferA2008-09-16T06:34:16Z2008-12-17T04:43:45Z<p>Matt Warren's blog has everything you need for that:</p>
<p><a href="http://blogs.msdn.com/mattwar/" rel="nofollow">http://blogs.msdn.com/mattwar/</a></p>