'See generated SQL for LINQ method syntax query? [duplicate]

I have a fairly simple LINQ query (using method syntax):

_context.Foo.Count(c => c.Bar > 123);

I need to see the SQL that will run against the database. I'm not using SQL Server, so I unfortunately can't use the SQL Server Profiler.

I'm unable to use query syntax in this case.

Is there any sort of .ToQueryString(); method?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source