У меня есть этот метод, я получаю список целых чисел и должен вернуть коллекцию EmployeeComments, проблема в том, что я не знаю, как принять каждый результат критериев и добавить в список EmployeeComments:
public ICollection<EmployeeComments> GetAllEmployeeCommentsByIdEmployee(List<int> idEmployeeList)
{
List<EmployeeComments> employeeCommentsList = new List<EmployeeComments>();
using (ISession session = NHibernateSessionBuilder.OpenSession())
{
foreach (int idEmployee in idEmployeeList)
{
employeeCommentsList = session
.CreateCriteria(typeof(EmployeeComments))
.Add(Restrictions.Eq("IdEmployee", idEmployee)).List<EmployeeComments>();
}
return employeeCommentsList;
}
}
как я могу это сделать?