from Industry industry
where index(industry.AllNames) = :lcid
> Hi,
>
> I have the following mapping of my "Industry" object:
>
> <?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>
>
> Now I would like toqueryall Industries ordered by the element of a
> given culture_id.
> I am stuck here ... I think i am close with this, but it does not
> work:
>
> stringquery= "from Industry industryorderby industry.AllNames