質問

データアクセスにNHibernateを使用しようとしていますが、次のような2つの単純なエンティティがあります:

public class User : IEntity
{
   public int ID { get; set; }
   public string FirstName { get; set; }
   public string LastName { get; set; }
   public string Email { get; set; }
   public string Logon { get; set; }
   public string Password { get; set; }
   public ICollection<Role> Roles { get; set; }

   public bool IsNew
   {
      get { return (ID == 0) ? true : false; }
   }

   public User()
   {
      Roles = new List<Role>();
   }
}

public class Role : IEntity
{
   public int ID { get; set; }
   public string RoleName { get; set; }
   public string RoleDescription { get; set; }

   public bool IsNew
   {
      get { return (ID == 0) ? true : false; }
   }
}

私の質問......そのRolesコレクションにIDが1のRoleを含むユーザーを検索する場合、どのように基準を作成しますか?

役に立ちましたか?

解決

気にしないで、これはやるのが比較的簡単でした:

// role was the role passed in to my Find method.
var criteria = DetachedCriteria.For(typeof (User))
            .CreateCriteria("Roles")
            .Add(Restrictions.Eq("ID", role.ID));
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top