我在数据库中有一个名为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");
}
}
如何从映射类中排除数据库列?