Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法找到使用 EF Code First 4.3.1(我正在使用 MySql)记录 sql 请求的好方法。
提前致谢。
问候,
埃里克
您可以通过这种方式获取从 EF 生成的 sql 语句:
var query = from u in context.Users // linq query select u; var sql_statement = ((ObjectQuery<User>)query).ToTraceString();