2012-02-16 89 views
0

所以我有一個實體稱爲VideoAsset映射到VideoCategory和組。兩者都是多對多:nhibernate生成不正確的sql查詢奇怪的別名

public class VideoAssetMap : IAutoMappingOverride<VideoAsset> 
{ 

    public void Override(AutoMapping<VideoAsset> mapping) 
    { 
     mapping.Map(x => x.Description) 
      .CustomSqlType("NTEXT"); 

     mapping.HasManyToMany<Group>(x => x.Groups) 
      .Table("VideoAssetGroups") 
      .ParentKeyColumn("VideoAssetId") 
      .ChildKeyColumn("GroupId") 
      .AsSet(); 

     mapping.HasManyToMany<VideoCategory>(x => x.Categories) 
      .Table("VideoCategoryRel") 
      .ParentKeyColumn("VideoCategoryId") 
      .ChildKeyColumn("VideoAssetId") 
      .AsSet(); 
    } 

} 

當我嘗試使用的SQLite運行在NUnit的下面的查詢如下:

ICriteria query = this.Session.CreateCriteria<VideoAsset>("a") 
      .CreateAlias("a.Categories", "c") 
      .CreateAlias("a.Groups", " ag") 
      .Add(Restrictions.Eq("c.Id", category.Id)) 
      .Add(Restrictions.Eq("a.Enabled", true)); 

我的SQL無法執行,因爲它的分解:

inner join Groups alias_ ag2_ on groups4_.GroupId=alias_ ag2_.GroupId 

我檢查了我的數據庫表,我不相信他們有什麼問題。有任何想法嗎?

回答

1

您的Groups屬性的別名中有一個空格。 (「a.Groups」,「ag」)