CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
GrandChildList.partial.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="GrandChildList.partial.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9
11{
12 public partial class GrandChildList
13 {
14 #region Server Factories
15
16 public static GrandChildList Load(Guid parentId)
17 {
18 return Csla.DataPortal.FetchChild<GrandChildList>(parentId);
19 }
20
21 #endregion
22
23 }
24}
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
T FetchChild()
Fetches an existing child business object.
Definition: DataPortalT.cs:685