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
Async/RootUpdateAllChildren.cs
Go to the documentation of this file.
1using System;
2using System.Threading.Tasks;
3
5{
7 public class RootUpdateAllChildren : BusinessBase<RootUpdateAllChildren>
8 {
9 private static PropertyInfo<string> DataProperty = RegisterProperty<string>(typeof(RootUpdateAllChildren), new PropertyInfo<string>("Data"));
10 public string Data
11 {
12 get { return GetProperty<string>(DataProperty); }
13 set { SetProperty<string>(DataProperty, value); }
14 }
15
16 private static PropertyInfo<Child> ChildProperty = RegisterProperty<Child>(typeof(RootUpdateAllChildren), new PropertyInfo<Child>("Child"));
17 public Child Child
18 {
19 get
20 {
21 return GetProperty<Child>(ChildProperty);
22 }
23 }
24
25 private static PropertyInfo<ChildList> ChildListProperty = RegisterProperty<ChildList>(typeof(RootUpdateAllChildren), new PropertyInfo<ChildList>("ChildList"));
27 {
28 get
29 {
30 return GetProperty<ChildList>(ChildListProperty);
31 }
32 }
33
34 public async Task FetchChildAsync(IChildDataPortal<Child> childDataPortal)
35 {
36 SetProperty<Child>(ChildProperty, await Child.GetChildAsync(childDataPortal));
37 }
38
39 [Create]
40 private async Task CreateAsync([Inject]IChildDataPortal<Child> childDataPortal, [Inject]IChildDataPortal<ChildList> childListDataPortal)
41 {
42 LoadProperty(ChildProperty, await Child.NewChildAsync(childDataPortal));
43 LoadProperty(ChildListProperty, await ChildList.GetListAsync(childListDataPortal));
44 }
45
46 [Insert]
47 protected async Task InsertAsync()
48 {
49 await FieldManager.UpdateAllChildrenAsync();
50 }
51
52 [Update]
53 protected async Task UpdateAsync()
54 {
55 await FieldManager.UpdateAllChildrenAsync();
56 }
57 }
58}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
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.