10using System.Threading.Tasks;
20 get {
return GetProperty<string>(DataProperty); }
21 set { SetProperty<string>(DataProperty, value); }
29 return GetProperty<Child>(ChildProperty);
38 return GetProperty<ChildList>(ChildListProperty);
55 private async Task InsertAsync()
57 await FieldManager.UpdateChildrenAsync();
61 private async Task UpdateAsync()
63 await FieldManager.UpdateChildrenAsync();
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)
async Task CreateAsync([Inject] IChildDataPortal< Child > childDataPortal, [Inject]IChildDataPortal< ChildList > childListDataPortal)
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.