gpt4 book ai didi

c# - EF 6.X 中的 Entity Framework Code First Fluent API 默认值

转载 作者:IT王子 更新时间:2023-10-29 04:12:49 26 4
gpt4 key购买 nike

如何使用 EntityFramework Code First FluentAPI 为 bool 属性设置默认值?

类似于:

Property(l => l.PropertyFlag).HasColumnType("bit").DefaultValue(1);

最佳答案

好消息,code first 现在支持这个。在生成的迁移的“Up()”方法中,使用以下语法指定默认值:

AddColumn("[table name]", "[column name]", c => c.Boolean(nullable: false, defaultValue: false));

MSDN for "AddColumn" method

关于c# - EF 6.X 中的 Entity Framework Code First Fluent API 默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20199382/

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