我想知道是否有办法从 NHibernate 中的存储过程中填充递归实体(子集合/关联)。假设我有下一节课:
public class Category
{
public int category_id { set; protected get; }
public string category_description { set; get; }
public IEnumerable<Category> SubCategories { set; get; }
....
}
有没有办法从获取一组类别及其整个子树的存储过程中获取根类别列表,每个类别在 SubCategories 属性中都有其各自的子级?我想得到与“急切加载递归关系”中提出的解决方案相同的结果,但从存储过程而不是表中获取结果。