How would one go about seeing the SQL generated by a LINQ2SQL insert? Let's say that I have
db.Elephants.InsertOnSubmit(elephantInstance);
db.SubmitChanges();
is there anyway to see the SQL? I've installed the LINQtoSQL visualizer Scott Gu mentions (http://weblogs.asp.net/scottgu/archive/2007/07/31/linq-to-sql-debug-visualizer.aspx) and it does seem to work for full LINQ queries but not for inserts such as this.