您可以使用NotMapped
属性数据注释来指示 Code-First 排除特定属性
public class Customer
{
public int CustomerID { set; get; }
public string FirstName { set; get; }
public string LastName{ set; get; }
[NotMapped]
public int Age { set; get; }
}
[NotMapped]
属性包含在System.ComponentModel.DataAnnotations
命名空间中。
您也可以使用类中的Fluent API
覆盖OnModelCreating
函数来执行此操作DBContext
:
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<Customer>().Ignore(t => t.LastName);
base.OnModelCreating(modelBuilder);
}
http://msdn.microsoft.com/en-us/library/hh295847(v=vs.103).aspx
我检查的版本是 EF 4.3
,这是您使用 NuGet 时可用的最新稳定版本。
编辑:2017 年 9 月
ASP.NET Core(2.0)
数据标注
如果您使用的是 asp.net core(撰写本文时为 2.0), [NotMapped]
则可以在属性级别使用该属性。
public class Customer
{
public int Id { set; get; }
public string FirstName { set; get; }
public string LastName { set; get; }
[NotMapped]
public int FullName { set; get; }
}
流畅的 API
public class SchoolContext : DbContext
{
public SchoolContext(DbContextOptions<SchoolContext> options) : base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Customer>().Ignore(t => t.FullName);
base.OnModelCreating(modelBuilder);
}
public DbSet<Customer> Customers { get; set; }
}