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.
1
using
System;
2
3
[AttributeUsage(AttributeTargets.Method, AllowMultiple =
false
)]
4
[
Serializable
]
5
public
sealed
class
FooAttribute
: Attribute { }
6
7
namespace
Csla.Analyzers.IntegrationTests
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
}
Csla.Analyzers.IntegrationTests.RunningChildrenLocally
Definition:
RunningChildrenLocally.cs:12
Csla.BusinessBase
This is the base class from which most business objects will be derived.
Definition:
BusinessBase.cs:38
FooAttribute
Definition:
RunningChildrenLocally.cs:5
Csla.Analyzers.IntegrationTests
Definition:
BusinessRuleCases.cs:5
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
Csla.DataPortalOperations.Fetch
@ Fetch
Fetch operation.
Generated by
1.9.2