NHibernate中对于多字段主键的Maping

本文介绍如何使用NHibernate实现多字段主键的映射,并提供了一个具体实例,包括XML配置文件和对应的C#类定义。

NHibernate中对于多字段主键的Maping:

以下代码通过测试的

SumupCarte.hbm.xml:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.0">
  
<class name="Cash.Domain.SumupCarte, Cash.Domain" table="sumup_carte">
        
<composite-id >
          
<key-property name="Sid">
            
<column name="sid"  sql-type="decimal" length="18" not-null="true"/>
          
</key-property>
          
<key-property name="Cid">
            
<column name="cid" sql-type="decimal" length="18" not-null="true" />
          
</key-property>
          
<key-property name="IsCountermand">
            
<column name="IsCountermand" sql-type="tinyint"  length="1" not-null="true" />
          
</key-property>
        
</composite-id>
  
</class>
</hibernate-mapping> 

 

SumupCarte.cs:

using System;
using System.Collections.Generic;
using System.Text;

namespace Cash.Domain
{
    [Serializable]
    
public class SumupCarte: Entity
    
{
        
Private Fields
        
        
Property Members
        
public override bool Equals(object obj)
        
{
            
if (base.Equals(obj)) return true;
            
if (obj == nullreturn false;
            SumupCarte eb 
= (SumupCarte)obj;
            
return eb.Sid.Equals(this.Sid);
        }

        
public override int GetHashCode()
        
{
            
return Sid.GetHashCode();
        }

    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值