有的时候我们在设计数据库的时候发现如果完全把商务逻辑中的类影射到表中可能会照成数据库中很多表都很相似,甚至结构上都是一样的,下面举一个例子来说明如何处理这种情况。假设我们正在创建一个图书销售网站,但客户却希望这个图书销售网站可能需要销售其他产品,在业务逻辑层我们可能设计如下:
表结构设计如下:
那么如何映射对象和表呢,请看如下代码:
Product
[Table(Name = "dbo.Products")]
[InheritanceMapping(Code = "1", Type = typeof(Product), IsDefault = true)]
[InheritanceMapping(Code = "2", Type = typeof(Book))]
[InheritanceMapping(Code = "3", Type = typeof(OtherProduct))]
public partial class Product
{
private int _ProductID;
private string _Name;
private System.Nullable<int> _Stock;
private System.Nullable<decimal> _Price;
private string _TypeID;
public Product()
{
}
[Column(Storage = "_ProductID", DbType = "Int NOT NULL", IsPrimaryKey = true)]
public int ProductID
{
get
{
return this._ProductID;
}
set
{
if ((this._ProductID != value))
{
this._ProductID = value;
}
}
}
[Column(Storage = "_Name", DbType = "VarChar(50)")]
public string Name
{
get
{
return this._Name;
}
set
{
if ((this._Name != value))
{
this._Name = value;
}
}
}
[Column(Storage = "_Stock", DbType = "Int")]
public System.Nullable<int> Stock
{
get
{
return this._Stock;
}
set
{
if ((this._Stock != value))
{
this._Stock = value;
}
}
}
[Column(Storage = "_Price", DbType = "Decimal(18,2)")]
public System.Nullable<decimal> Price
{
get
{
return this._Price;
}
set
{
if ((this._Price != value))
{
this._Price = value;
}
}
}
[Column(IsDiscriminator = true, Storage = "_TypeID", DbType = "VarChar(50)")]
public string TypeID
{
get
{
return this._TypeID;
}
set
{
if ((this._TypeID != value))
{
this._TypeID = value;
}
}
}
}
版权与免责声明
1、本站所发布的文章仅供技术交流参考,本站不主张将其做为决策的依据,浏览者可自愿选择采信与否,本站不对因采信这些信息所产生的任何问题负责。
2、本站部分文章来源于网络,其版权为原权利人所有。由于来源之故,有的文章未能获得作者姓名,署“未知”或“佚名”。对于这些文章,有知悉作者姓名的请告知本站,以便及时署名。如果作者要求删除,我们将予以删除。除此之外本站不再承担其它责任。
3、本站部分文章来源于本站原创,本站拥有所有权利。
4、如对本站发布的信息有异议,请联系我们,经本站确认后,将在三个工作日内做出修改或删除处理。
请参阅权责声明!