<hibernate-mapping> <class name="hibonetoonehbm.Student" table="student"> <id name="studentId" column="StudentID" type="long"> <generator class="native"/> </id> <property name="studentName" column="StudentName" type="string" length="50"/> <many-to-one name="studentAddress" column="StudentAddress" cascade="all" unique="true" not-null="true"/> </class> </hibernate-mapping>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)