gpt4 book ai didi

asp.net-mvc - 如何使用 EF Code First 解释枚举类型

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

这是一个模型:

Public class Person
{
[Key]
Public int PersonId { get; set: }
Public int Age { get; set; }
Public ColorEnum FavoriteColor { get; set; }
}

Public Enum ColorEnum
{
Red = 1,
Green = 2,
Blue = 3
}

Entity Framework Code First 是否可以使用Person 模型生成相应的表? ColorEnum 类型呢?

谢谢

最佳答案

EF 4.3 不支持枚举。但已宣布 Enum support is coming with EF 5 ,它将与 .NET 4.5 一起发布。目前要使用 Code-First 处理枚举,您将执行以下操作:

Public class Person
{
[Key]
Public int PersonId { get; set: }
Public int Age { get; set; }

public int FavoriteColorValue{ get; set;}
[NotMapped]
Public ColorEnum FavoriteColor
{
get{ return (ColorEnum)FavoriteColorValue; }
set{ FavoriteColorValue = (int)value; }
}
}

Public Enum ColorEnum
{
Red = 1,
Green = 2,
Blue = 3
}

关于asp.net-mvc - 如何使用 EF Code First 解释枚举类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9418958/

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