How do you extend Linq to SQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T06:29:50Z http://stackoverflow.com/feeds/question/62963 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql 8 How do you extend Linq to SQL? George Tsiokos 2008-09-15T13:41:40Z 2008-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&lt;TEntity&gt; With&lt;TEntity&gt; ( this Table&lt;TEntity&gt; table, params TableHint[] args) where TEntity : class { //TODO: implement return table; } public static EntitySet&lt;TEntity&gt; With&lt;TEntity&gt; ( this EntitySet&lt;TEntity&gt; 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#64612 0 Answer by tenshihan for How do you extend Linq to SQL? tenshihan 2008-09-15T16:48:59Z 2008-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#64814 0 Answer by David B for How do you extend Linq to SQL? David B 2008-09-15T17:13:49Z 2008-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#67999 3 Answer by DamienG for How do you extend Linq to SQL? DamienG 2008-09-15T23:42:05Z 2008-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#69827 0 Answer by KristoferA for How do you extend Linq to SQL? KristoferA 2008-09-16T06:34:16Z 2008-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>