gpt4 book ai didi

c# - Entity Framework 6 投影生成 SQL 等效于 "Select *"并且不生成 WHERE 子句

转载 作者:太空狗 更新时间:2023-10-29 21:53:25 25 4
gpt4 key购买 nike

我正在使用 Entity Framework 6 和 MSSQL 服务器数据库维护一个 ASP.NET WebAPI2 应用程序。 IoC 容器是 CaSTLe Windsor。我的存储库中有一个方法,用于从数据库中获取用户的一些详细信息。因为我不需要每一列,所以我想我会使用投影。问题是生成的 SQL 选择了我表中的所有列。这是 DbContext

public partial class SecurityContext : DbContext
{
public SecurityContext()
: base("name=SecurityContext")
{
}

public virtual DbSet<User> secUsers { get; set; }
}

这里是在存储库中声明/初始化上下文的地方

public class BaseRepository<T> : IRepository<T> where T : class
{
protected DbContext context;

public BaseRepository()
{
context = new SecurityContext();
}

public BaseRepository(DbContext context)
{
this.context = context;
}
//elided
}

这是存储库中的方法

public User FindUserForLoginVerification(string name)
{
var loginInfo = context.Set<User>()
.Where(c => c.LoginName == name)
.Select(c => new
{
LoginName = c.LoginName,
Password = c.HashedPassword,
Salt = c.PasswordHashSalt
})
.SingleOrDefault();

return new User() {
LoginName = loginInfo.LoginName,
HashedPassword = loginInfo.Password,
PasswordHashSalt = loginInfo.Salt
};
}

这是输出的 SQL。

SELECT 
[Extent1].[UserId] AS [UserId],
[Extent1].[CreatedByUserId] AS [CreatedByUserId],
[Extent1].[Comment] AS [Comment],
[Extent1].[CreatedDate] AS [CreatedDate],
[Extent1].[DefaultCulture] AS [DefaultCulture],
[Extent1].[EmailAddress] AS [EmailAddress],
[Extent1].[FirstName] AS [FirstName],
[Extent1].[IsDeleted] AS [IsDeleted],
[Extent1].[IsExcludedFromPasswordPolicy] AS [IsExcludedFromPasswordPolicy],
[Extent1].[IsChangePassword] AS [IsChangePassword],
[Extent1].[IsLocked] AS [IsLocked],
[Extent1].[LastName] AS [LastName],
[Extent1].[LastPasswordChangeDate] AS [LastPasswordChangeDate],
[Extent1].[LoginName] AS [LoginName],
[Extent1].[NumberOfFailedLoginAttempts] AS [NumberOfFailedLoginAttempts],
[Extent1].[PasswordHash] AS [PasswordHash],
[Extent1].[PasswordHashSalt] AS [PasswordHashSalt]
[Extent1].[UpdatedDate] AS [UpdatedDate]
FROM [dbo].[User] AS [Extent1]

我想我做错了什么,但我不知道是什么。任何想法将不胜感激。

编辑:我刚刚注意到一些奇怪的事情 - 在生成的 SQL 中没有 WHERE 子句,这意味着所有行都是从数据库中选择的,带到客户端,并在那里过滤。编辑 2:使用 LINQ 查询语法生成相同的 SQL。编辑 3:在编写单元测试后,我手动实例化存储库和服务(而不是将其留给 CaSTLeWindsor),运行测试时生成的 SQL 具有 WHERE 子句。

最佳答案

如果您的 context是返回 IEnumerable<T> 的东西(而不是 IQueryable<T> )来自 Set<T>方法,那就是你的问题,因为表达式:

context.Set<User>
.Where(...)
.Select(...)
.SingleOrDefault()

...会将整个表读入内存,然后应用 Where子句和投影(Select)。所以,您期望SELECT * FROM table行为。

DbContext Set<T> 的类实现返回 DbSet<T>确实实现了IQueryable<T> , 这样就可以了。但是因为看起来你有一个自定义存储库实现,我怀疑幕后还有什么可能发生......

关于c# - Entity Framework 6 投影生成 SQL 等效于 "Select *"并且不生成 WHERE 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34135625/

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