gpt4 book ai didi

c# - 带空值的 EF Core 复合主键

转载 作者:太空宇宙 更新时间:2023-11-03 19:38:42 31 4
gpt4 key购买 nike

只是想知道这是否可能:我有一个来自现有数据库的表,我无法修改。我只对查看数据感兴趣。我不会更新表格。

没有主键。有两个键组合在一起会使行唯一。不幸的是,这两列都允许并具有空值。

我试过:

 modelBuilder.Entity<IesHrEmployee>(entity => {
entity.HasKey(o => new { o.PERS_NO, o.POS_NO });
entity.ToTable("IES_HR_EMPLOYEES", "DBO");
});

不幸的是在我的仓库中

public class IesHrEmployeesRepository : IIesHrEmployeesRepository
{
private DataContext context;

public IesHrEmployeesRepository(DataContext ctx) => context = ctx;

public IEnumerable<IesHrEmployee> IesHrEmployees => context.IesHrEmployees.ToArray();
}

toArray 调用中,我收到此错误:

Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action UserNavigator.Controllers.IesHrController.Index (UserNavigator) in 139.9397ms fail:
Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1]

An unhandled exception has occurred while executing the request. System.Data.SqlTypes.SqlNullValueException: Data is Null. This method or property cannot be called on Null values.

at System.Data.SqlClient.SqlBuffer.get_String()
at System.Data.SqlClient.SqlDataReader.GetString(Int32 i)

最佳答案

不,您不能从可为空的列组成主键。然而,如果你只需要查询这个表(没有插入或更新),你可以创建一个 DbQuery<IesHrEmployee>您的上下文中的属性,根本不需要 key 。

关于c# - 带空值的 EF Core 复合主键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57579999/

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