首页 > 代码库 > aaaa
aaaa
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name ="NHibernateExample01.Model.Entity.CustomerEntity,NHibernateExample01.Model" table="CustomerInfo">
<id name="CustomerID" column="CustomerID" type="string" length="36">
<generator class ="native"></generator>
</id>
<property name="CustomerName" column ="CustomerName" type="string" length="200" />
<property name ="LinkPhone" column="LinkPhone" type="string" length="20"/>
<property name ="LinkAddress" column="LinkAddress" type="string" length="500" />
</class>
</hibernate-mapping>
aaaa