32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="VideoGameQuotes.Api" namespace="VideoGameQuotes.Api">
|
|
|
|
<class name="Quote" table="game_quote">
|
|
<id column="quote_id" name="Id" type="int">
|
|
<generator class="identity" />
|
|
</id>
|
|
|
|
<property name="Text" column="quote_text" not-null="true" type="string" length="1024"/>
|
|
<property name="Created" column="created" not-null="true" type="DateTime" />
|
|
<property name="Modified" column="modified" not-null="false" type="DateTime" />
|
|
|
|
<many-to-one name="Creator" column="creator" not-null="true" foreign-key="fk_quote_user"/>
|
|
<many-to-one name="Game" column="game_id" not-null="true" foreign-key="fk_quote_game" />
|
|
|
|
<set access="field" name="categories" table="quote_category_map" cascade="save-update">
|
|
<key column="quote_id" />
|
|
<many-to-many class="VideoGameQuotes.Api.Category" column="category_id" />
|
|
</set>
|
|
|
|
<set access="field" name="votes" table="vote" cascade="save-update">
|
|
<key column="quote_id" />
|
|
<one-to-many class="VideoGameQuotes.Api.Vote" />
|
|
</set>
|
|
|
|
<set access="field" name="flags" table="quote_flag" cascade="save-update">
|
|
<key column="quote_id" />
|
|
<one-to-many class="VideoGameQuotes.Api.QuoteFlag" />
|
|
</set>
|
|
</class>
|
|
|
|
</hibernate-mapping> |