EF实体类指定部分属性不映射成数据库字段的方法

无营养贴
在想要不映射的字段上加上[NotMapped]标记
如:

        [NotMapped]
        public string Status { get; set; }

你可能感兴趣的:(C#)