摘要: 1.KeyColumn public class ProductMap : ClassMap<Product>{ public ProductMap() { Id(p => p.ProductID); Map(p => p.CreateTime); Map(p => p.Name); Map(p => p.Price); }... 阅读全文