在EF中重新排序数据库中的列?

时间:2016-11-26 01:25:10

标签: sql entity-framework entity-framework-6 identity

我使用IdentityRole属性扩展MVC中的Description类,数据库中的结果表是:Id,Description,Name。有没有办法使用EF重新排序列,是Id,Name,Description?

这里是派生类的实现:

 public class MIdentityRole : IdentityRole<int, ApplicationUserRole>, IRole<int>
    {
        [Column("Description", Order = 2)]
        public string Description { get; set; }
        public MIdentityRole() { }

        public MIdentityRole(string name) : this()
        {
            Name = name;
        }
        public MIdentityRole(string name, string description) : this(name)
        {
            Description = description;
        }
    }

如图所示,我尝试使用Column属性,但它不会影响

0 个答案:

没有答案