本文整理匯總了C#中Rafy.Domain.EagerLoadOptions類的典型用法代碼示例。如果您正苦於以下問題:C# EagerLoadOptions類的具體用法?C# EagerLoadOptions怎麽用?C# EagerLoadOptions使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
EagerLoadOptions類屬於Rafy.Domain命名空間,在下文中一共展示了EagerLoadOptions類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetById
public new MonthPlan GetById(object id, EagerLoadOptions eagerLoad = null)
{
return base.GetById(id, eagerLoad) as MonthPlan;
}
示例2: GetByParentIdList
public new ChapterList GetByParentIdList(object[] parentIdList, PagingInfo paging = null, EagerLoadOptions eagerLoad = null)
{
return base.GetByParentIdList(parentIdList, paging, eagerLoad) as ChapterList;
}
示例3: GetByTreePId
public new ChapterList GetByTreePId(object treePId, EagerLoadOptions eagerLoad = null)
{
return base.GetByTreePId(treePId, eagerLoad) as ChapterList;
}
示例4: GetFirst
public new OperationAC GetFirst(EagerLoadOptions eagerLoad = null)
{
return base.GetFirst(eagerLoad) as OperationAC;
}
示例5: GetById
public new Chapter GetById(object id, EagerLoadOptions eagerLoad = null)
{
return base.GetById(id, eagerLoad) as Chapter;
}
示例6: GetByIdList
public new OperationACList GetByIdList(object[] idList, EagerLoadOptions eagerLoad = null)
{
return base.GetByIdList(idList, eagerLoad) as OperationACList;
}
示例7: GetByTreeParentIndex
public new OperationACList GetByTreeParentIndex(string treeIndex, EagerLoadOptions eagerLoad = null)
{
return base.GetByTreeParentIndex(treeIndex, eagerLoad) as OperationACList;
}
示例8: GetAll
public new ProductAttachementList GetAll(PagingInfo paging= null, EagerLoadOptions eagerLoad = null)
{
return base.GetAll(paging, eagerLoad) as ProductAttachementList;
}
示例9: GetById
public new ProductAttachement GetById(object id, EagerLoadOptions eagerLoad = null)
{
return base.GetById(id, eagerLoad) as ProductAttachement;
}
示例10: GetByTreePId
public new MonthPlanList GetByTreePId(object treePId, EagerLoadOptions eagerLoad = null)
{
return base.GetByTreePId(treePId, eagerLoad) as MonthPlanList;
}
示例11: GetFirst
public new MonthPlan GetFirst(EagerLoadOptions eagerLoad = null)
{
return base.GetFirst(eagerLoad) as MonthPlan;
}
示例12: GetByTreeParentIndex
public new MonthPlanList GetByTreeParentIndex(string treeIndex, EagerLoadOptions eagerLoad = null)
{
return base.GetByTreeParentIndex(treeIndex, eagerLoad) as MonthPlanList;
}
示例13: GetByParentId
public new MonthPlanList GetByParentId(object parentId, PagingInfo paging = null, EagerLoadOptions eagerLoad = null)
{
return base.GetByParentId(parentId, paging, eagerLoad) as MonthPlanList;
}
示例14: GetByIdList
public new MonthPlanList GetByIdList(object[] idList, EagerLoadOptions eagerLoad = null)
{
return base.GetByIdList(idList, eagerLoad) as MonthPlanList;
}
示例15: GetAll
public new OperationACList GetAll(PagingInfo paging= null, EagerLoadOptions eagerLoad = null)
{
return base.GetAll(paging, eagerLoad) as OperationACList;
}