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
RootWithChildren.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RootWithChildren.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;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
12
14{
15 public class RootWithChildren:Csla.BusinessBase<RootWithChildren>
16 {
17 public static readonly PropertyInfo<int> IdProperty = RegisterProperty<int>(p => p.ID);
18 public int ID
19 {
20 get { return GetProperty<int>(IdProperty); }
21 private set { SetProperty<int>(IdProperty, value); }
22 }
23
24 public static readonly PropertyInfo<string> NameProperty = RegisterProperty<string>(p => p.Name);
25 public string Name
26 {
27 get { return GetProperty<string>(NameProperty); }
28 set { SetProperty<string>(NameProperty, value); }
29 }
30 public static readonly PropertyInfo<ChildList> ChildrenProperty = RegisterProperty<ChildList>(p => p.Children);
32 {
33 get { return GetProperty<ChildList>(ChildrenProperty); }
34 private set { LoadProperty<ChildList>(ChildrenProperty, value); }
35 }
36 public static RootWithChildren Get(int childCount)
37 {
38 return DataPortal.Fetch<RootWithChildren>(new SingleCriteria<RootList, int>(childCount));
39 }
40 private void DataPortal_Fetch(SingleCriteria<RootList, int> criteria)
41 {
42 using (BypassPropertyChecks)
43 {
44 ID = criteria.Value * 100;
45 Name = "root with " + criteria.Value.ToString() + " children";
46 }
47 LoadProperty(ChildrenProperty, DataPortal.FetchChild<ChildList>(criteria.Value));
48 }
49
50 }
51 public class ChildList : Csla.BusinessListBase<ChildList, Child>
52 {
53 private ChildList()
54 {}
55
56 private void Child_Fetch(int childCount)
57 {
58 for (int i = 0; i < childCount; i++)
59 {
60 this.Add(DataPortal.FetchChild<Child>(i));
61 }
62 }
63 }
64}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
This is the base class from which most business collections or lists will be derived.
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
T Fetch(params object[] criteria)
Called by a factory method in a business class to Fetch a new object, which is loaded with default va...
Definition: DataPortalT.cs:247
T FetchChild()
Fetches an existing child business object.
Definition: DataPortalT.cs:685
Maintains metadata about a property.
static readonly PropertyInfo< ChildList > ChildrenProperty
static RootWithChildren Get(int childCount)
static readonly PropertyInfo< int > IdProperty
static readonly PropertyInfo< string > NameProperty