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
GrandChild.partial.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="GrandChild.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 GrandChild
13 {
14 #region Factories
15
16 internal static GrandChild Load(int id, Guid parentId, string name)
17 {
18 return Csla.DataPortal.FetchChild<GrandChild>(id, parentId, name);
19 }
20
21 #endregion
22
23 #region Data Access
24
25 private void Child_Fetch(int id, Guid parentId, string name)
26 {
27 LoadProperty<int>(IdProperty, id);
28 LoadProperty<Guid>(ParentIdProperty, parentId);
29 LoadProperty<string>(NameProperty, name);
30
31 LoadProperty<string>(DataPortalMethodProperty, "Child_Fetch");
32 }
33
34 private void Child_Update()
35 {
36 LoadProperty<string>(DataPortalMethodProperty, "Child_Update");
37 }
38 #endregion
39 }
40}
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