vgquotes/Src/VideoGameQuotes.Api/Mappings/Category.hbm.xml

13 lines
493 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="VideoGameQuotes.Api" namespace="VideoGameQuotes.Api">
<class name="Category" table="category">
<id column="category_id" name="Id" type="int">
<generator class="identity" />
</id>
<property name="Name" column="category_name" not-null="true" length="255" unique="true"/>
<property name="Created" column="created" not-null="true" />
</class>
</hibernate-mapping>