gpt4 book ai didi

entity-framework - Entity Framework -使用toTraceString查看Sql

转载 作者:行者123 更新时间:2023-12-04 06:04:53 24 4
gpt4 key购买 nike

我正在尝试查看Entity Framework 5.0从实体查询生成的生成的sql。在网络上,每个人都说将 IQuerable 对象转换为 ObjectQuery 对象,然后使用toTraceString()方法返回生成的查询。

但是我一直收到无效的案例异常:

    Unhandled Exception: System.InvalidCastException: Unable to cast object of type
'System.Data.Entity.Infrastructure.DbQuery`1[System.String]' to type 'System.Data.Objects.ObjectQuery'.

在Entity Framework 5中执行此操作的新方法是什么?

最佳答案

您可以使用.ToString()从IQueryable查看生成的SQL,例如

var query = context.People.Where(x => x.DomainId == 1);
Console.WriteLine(query.ToString());

关于entity-framework - Entity Framework -使用toTraceString查看Sql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16002898/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com