gpt4 book ai didi

asp.net-core - 执行脚手架dbcontext时如何使集合复数?

转载 作者:行者123 更新时间:2023-12-04 17:41:52 25 4
gpt4 key购买 nike

我执行了一个脚手架 dbcontext 并且一切都很好,除了集合没有复数。我可以在命令中添加一个参数来解决这个问题吗?

这是我运行的命令:

dotnet ef dbcontext scaffold "my connection string" 
Microsoft.EntityFrameworkCore.SqlServer -o Entities -c DbEntities

我想要的是:
public partial class Client
{
public int Id { get; set; }
public ICollection<Order> Orders { get; set; }
}

我得到了什么:
public partial class Client
{
public int Id { get; set; }
public ICollection<Order> Order { get; set; }
}

最佳答案

关于asp.net-core - 执行脚手架dbcontext时如何使集合复数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54151716/

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