I am new to Hibernate and am currently struggling a bit with HQL. I have the following comparison and would like to get all the "industrial" entities ordered by the "translation" for this "culture_id"
code:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="Domain.Industry, Core" table="industry">
<id name="ID" unsaved-value="0">
<generator class="identity" />
</id>
<map name="AllNames"
access="nosetter.camelcase-underscore"
table="_dict_industry_name"
cascade="all-delete-orphan">
<key column="record_id"></key>
<index column="culture_id" type="Int32"></index>
<element column="translation" type="String"></element>
</map>
</class>
</hibernate-mapping>
I tried the following: Code:
from Industry industry order by elements(industry.AllNames[:lcid])
but it does not work ...
Thanks for any help!
source
share