All Tags »
Tips, tricks, c... »
LINQ »
log4net »
Database
Sorry, but there are no more tags available to filter with.
-
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 ...