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.
RunningChildrenLocally.cs
Go to the documentation of this file.
1using System;
2
3[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
5public sealed class FooAttribute : Attribute { }
6
8{
9 [Serializable]
10 public sealed class RunningChildrenLocally
11 : BusinessBase<RunningChildrenLocally>
12 {
13 [Fetch]
14 [RunLocal]
15 private void DataPortal_Fetch() { }
16
17 [FetchChild]
18 [RunLocal]
19 [Foo]
20 private void Child_Fetch() { }
21
22 [UpdateChild]
23 [RunLocal, Foo]
24 private void Child_Update() { }
25 }
26}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Fetch
Fetch operation.