I'm using DbLinq with SQLite for a small project of mine. Is there any way to look at the actual SQL queries that get executed behind the scenes?
I remember a monitoring program for SQL Server from my internship but SQLite is a quite different beast, I fear.
Your database context should have a
Log
property of typeTextWriter
. If you assigncontext.Log = Console.Out;
for example, you should get the SQL written out to the console.