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.
当我们将 linq 调试到 Sql 实体时,当我们将鼠标悬停在 IQueryable 对象上时,我们会看到在屏幕后面构造实际查询,有什么方法可以看到为 EF 生成的 sql?
除了 LinqPad 和 SQL 分析器
尝试.ToTraceString:
.ToTraceString
query.ToTraceString()
这将返回 SQL。