Posts Tagged LINQ
Saturday, November 29, 2008 10:16
DataContext Log Property can be used to print generated SQL query or command in the console window as shown below:
db.Log = Console.Out;
If you want to print the SQL query in DebugView or VS Output window you may use DebugWriter class(by Kris Vandermotten) .The usage of the class is pretty simple …
db.Log = new DebugWriter();
I wrote [...]
Saturday, November 29, 2008 10:16
The LINQPad(beta) is an advanced and free LINQ expressions testing and learning tool written by Joseph Albahari. It allows you to develop and verify a LINQ expression.LINQPad supports LINQ to objects, LINQ to SQL and LINQ to XML. To run LINQ against SQL queries, you will need SQL Server 2005, SQL Server 2000, or SQL [...]
Saturday, November 29, 2008 10:16
This release adds significantly to the LINQ functionality previously available. Highlights of this release include:
Productivity enhancements via DLINQ designer and debugger support within the Visual Studio 2005 IDE.
Support for a broader range of development scenarios thanks to new databinding and ASP.NET support.
Ability to integrate LINQ with existing code through features like LINQ over [...]