9using System.Collections.Generic;
21 private set { SetProperty<int>(
IdProperty, value); }
40 private void DataPortal_Fetch(SingleCriteria<RootList, int> criteria)
42 using (BypassPropertyChecks)
44 ID = criteria.Value * 100;
45 Name =
"root with " + criteria.Value.ToString() +
" children";
56 private void Child_Fetch(
int childCount)
58 for (
int i = 0; i < childCount; i++)
This is the base class from which most business objects will be derived.
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.
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...
T FetchChild()
Fetches an existing child business object.
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