それがどのように機能するか:
return Session
.GetNamedQuery("Select_Question_Group")
.SetInt32("QuestionGroupId", QuestionGroupId)
.UniqueResult<QuestionGroup>();
それは次のような方法で存在しますか?
return Session
.GetNamedQuery("Select_Question_Group")
.With(new RequestCustomClass{QuestionGroupId = 1}) // not existent method
.UniqueResult<QuestionGroup>();
ありがとう!