How do I view the SQL generated by entity framework ?
(In my particular case I\'m using the mysql provider - if it matters)
IQueryable query = from x in appEntities where x.id = 32 select x; var queryString = query.ToString();
Will return the sql query. Working using datacontext of EntityFramework 6