0

也许答案将是“设计”。但是枚举属性主要用于过滤。所以他们需要“数据库索引”。但是如果你将它们映射到 varchar(max) 我们无法在 Sql Server 中为它们创建索引。

因此,如果答案是“按设计”,您是否可以添加 [Flag] 样式绑定替代方案。

4

1 回答 1

1

这对我来说是架构错误,没有解决方案。

所以我们做了

int UserTypeId {get;set,} // It is for db
UserTypeEnum UserTypeEnum {get;set;} // It manipulates UserTypeId and read from UserTypeId
于 2012-08-22T20:37:39.970 回答