2using System.Threading.Tasks;
12 get {
return GetProperty<string>(DataProperty); }
13 set { SetProperty<string>(DataProperty, value); }
21 return GetProperty<Child>(ChildProperty);
30 return GetProperty<ChildList>(ChildListProperty);
49 await FieldManager.UpdateAllChildrenAsync();
55 await FieldManager.UpdateAllChildrenAsync();
This is the base class from which most business objects will be derived.
Maintains metadata about a property.
static async Task< Child > NewChildAsync(IChildDataPortal< Child > childDataPortal)
static async Task< Child > GetChildAsync(IChildDataPortal< Child > childDataPortal)
static async Task< ChildList > GetListAsync(IChildDataPortal< ChildList > childDataPortal)
async Task FetchChildAsync(IChildDataPortal< Child > childDataPortal)
Interface defining the members of the child data portal type.
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).
@ Create
Create operation.