2012-01-06 17 views
0

私はテーブルチームを持っており、私はテーブルを持っています。各チームは複数の場所を持つことができ、各場所には複数のチームが存在する可能性があるため、多対多の関係です。nhibernate - 中間テーブルを介した条件

このシナリオをデータベースに作成すると、多対多のリンクを保持するTeam、Location、TeamLocationの3つのテーブルが作成されます。

私は今、私はすべてのチームを取得しようとしています...次を使用してNHibernateので Team.hbm.xml

​​

とLocation.hbm.xml

<class name="App.Data.Entities.Location,App.Data.Entities" table="`Location`" lazy="true"> 
    <id name="Locationid" column="`LocationID`" type="int"> 
     <generator class="native" /> 
    </id> 
    <property type="string" not-null="true" length="250" name="LocationName" column="`LocationName`" /> 
    <property type="string" length="1000" name="Address" column="`Address`" /> 
    <bag name="Teams" inverse="false" table="`TeamLocations`" lazy="true" cascade="all"> 
     <key column="`LocationID`" /> 
     <many-to-many class="App.Data.Entities.Team,App.Data.Entities"> 
     <column name="`TeamID`" /> 
     </many-to-many> 
    </bag> 
    </class> 

これをマッピングしました特定の場所に基づいている私はできません基準APIを使用して..

等価SQL ...

SELECT  Team.TeamName, Location.LocationName 
FROM   Team INNER JOIN 
         TeamLocations ON Team.TeamID = TeamLocations.TeamID INNER JOIN 
         Location ON TeamLocations.LocationID = Location.LocationID 
WHERE  (TeamLocations.LocationID = 2) 

とasp.netのコードで

ICriteria criteria = _session.CreateCriteria(typeof(Team)).SetFirstResult(startRowIndex).SetMaxResults(maximumRows); 

if (deptID > 0) 
{ 
    Department dept = new Department(deptID); 
    criteria.Add(Expression.Eq(Team.PropertyNames.Department, dept)); //for department, which works fine. 
} 

if (locationIDs.Count > 0) 
{ 
    List<Location> locations = new List<Location>(); 

    foreach (int locationID in locationIDs) 
    { 
     Location loc = new Location(locationID); 
     locations.Add(loc); 
    } 

    criteria.CreateCriteria("TeamLocations").Add(Expression.Eq(""TeamLocations"", locations)); 
} 

return criteria.List<Team>(); 

これはスローし、エラー..

私は:(

が私を修正して把握するために見カント

could not resolve property: TeamLocations of: App.Data.Entities.Location 

.. 感謝!

答えて

1

restriction to an association path using CreateCriteria or CreateAliasを以下のように追加できます。あなたのモデルとマッピングについてもっと知っておく必要があります。なぜなら、エイリアシングなしでTeam.PropertyNames.Departmentに制限を加えることができる理由を理解するためです。

ICriteria criteria = _session.CreateCriteria(typeof(Team)).SetFirstResult(startRowIndex).SetMaxResults(maximumRows); 

if (deptID > 0) 
{ 
    Department dept = new Department(deptID); 
    criteria.Add(Expression.Eq(Team.PropertyNames.Department, dept)); //for department, which works fine. 
} 

if (locationIDs.Count > 0) 
{ 
    // you may need to convert locationIds to an ICollection e.g. 
    // var ids = locationIds.ToArray(); 
    criteria.CreateAlias("TeamLocations", "teamLocations"); 
    criteria.Add(Restrictions.In("teamLocations.LocationId", locationIds)); 
} 

return criteria.List<Team>(); 
+0

正常に機能しました。 –

関連する問題