实体框架映射排除数据库表列

时间:2015-06-18 06:55:10

标签: c# sql-server entity-framework entity-framework-4

我在数据库中有一个名为product的表,它有很多列:

  • 编号
  • 名称
  • 价格
  • 尺寸
  • 颜色
  • ....
  • ..

我想创建一个类来表示此表只有3列。我会像这样映射。

public class ProductConfiguration : EntityTypeConfiguration<Product>
{
    public ProductConfiguration()
    {
        ToTable("product");

        Property(p => p.ProductId).HasColumnName("id");
        Property(p => p.Name).HasColumnName("name");
        Property(p => p.Price).HasColumnName("price");
    }
}

如何从映射类中排除数据库列?

0 个答案:

没有答案