I found this EFTracingProvider extension for the ObjectContext here:
http://efwrappers.codeplex.com/
But the example is for ObjectContext not DbContext, to get it to work with DbContext
do the following in the constructor:
Public Sub New()
MyBase.New(EFTracingProviderUtils.CreateTracedEntityConnection("MyDbConnection"), True)
Dim context As ObjectContext = CType(Me, IObjectContextAdapter).ObjectContext
context.EnableTracing()
End Sub
Oh and remember to set the config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.diagnostics>
<sources>
<source name="EntityFramework.MyDbConnection" switchValue="All" />
</sources>
</system.diagnostics>
That then traces all the SQL to immediate window.