當前位置: 首頁>>代碼示例>>C#>>正文


C# Domain.EagerLoadOptions類代碼示例

本文整理匯總了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;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:MonthPlan.g.cs

示例2: GetByParentIdList

 public new ChapterList GetByParentIdList(object[] parentIdList, PagingInfo paging = null, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByParentIdList(parentIdList, paging, eagerLoad) as ChapterList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:Chapter.g.cs

示例3: GetByTreePId

 public new ChapterList GetByTreePId(object treePId, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByTreePId(treePId, eagerLoad) as ChapterList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:Chapter.g.cs

示例4: GetFirst

 public new OperationAC GetFirst(EagerLoadOptions eagerLoad = null)
 {
     return base.GetFirst(eagerLoad) as OperationAC;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:OperationAC.g.cs

示例5: GetById

 public new Chapter GetById(object id, EagerLoadOptions eagerLoad = null)
 {
     return base.GetById(id, eagerLoad) as Chapter;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:Chapter.g.cs

示例6: GetByIdList

 public new OperationACList GetByIdList(object[] idList, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByIdList(idList, eagerLoad) as OperationACList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:OperationAC.g.cs

示例7: GetByTreeParentIndex

 public new OperationACList GetByTreeParentIndex(string treeIndex, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByTreeParentIndex(treeIndex, eagerLoad) as OperationACList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:OperationAC.g.cs

示例8: GetAll

 public new ProductAttachementList GetAll(PagingInfo paging= null, EagerLoadOptions eagerLoad = null)
 {
     return base.GetAll(paging, eagerLoad) as ProductAttachementList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:ProductAttachement.g.cs

示例9: GetById

 public new ProductAttachement GetById(object id, EagerLoadOptions eagerLoad = null)
 {
     return base.GetById(id, eagerLoad) as ProductAttachement;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:ProductAttachement.g.cs

示例10: GetByTreePId

 public new MonthPlanList GetByTreePId(object treePId, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByTreePId(treePId, eagerLoad) as MonthPlanList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:MonthPlan.g.cs

示例11: GetFirst

 public new MonthPlan GetFirst(EagerLoadOptions eagerLoad = null)
 {
     return base.GetFirst(eagerLoad) as MonthPlan;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:MonthPlan.g.cs

示例12: GetByTreeParentIndex

 public new MonthPlanList GetByTreeParentIndex(string treeIndex, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByTreeParentIndex(treeIndex, eagerLoad) as MonthPlanList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:MonthPlan.g.cs

示例13: GetByParentId

 public new MonthPlanList GetByParentId(object parentId, PagingInfo paging = null, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByParentId(parentId, paging, eagerLoad) as MonthPlanList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:MonthPlan.g.cs

示例14: GetByIdList

 public new MonthPlanList GetByIdList(object[] idList, EagerLoadOptions eagerLoad = null)
 {
     return base.GetByIdList(idList, eagerLoad) as MonthPlanList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:MonthPlan.g.cs

示例15: GetAll

 public new OperationACList GetAll(PagingInfo paging= null, EagerLoadOptions eagerLoad = null)
 {
     return base.GetAll(paging, eagerLoad) as OperationACList;
 }
開發者ID:569550384,項目名稱:Rafy,代碼行數:4,代碼來源:OperationAC.g.cs


注:本文中的Rafy.Domain.EagerLoadOptions類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。