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
BusyProperties.cs
Go to the documentation of this file.
1
using
System;
2
3
namespace
Csla.Analyzers.IntegrationTests
4
{
5
[
Serializable
]
6
public
sealed
class
BusyProperties
7
:
BusinessBase
<BusyProperties>
8
{
9
public
static
readonly
PropertyInfo<int>
IdProperty
= RegisterProperty<int>(c => c.Id);
10
public
int
Id
11
{
12
get
13
{
14
var x = 42;
15
return
ReadProperty(
IdProperty
) + x;
16
}
17
private
set
{ LoadProperty(
IdProperty
, value); }
18
}
19
}
20
}
Csla.Analyzers.IntegrationTests.BusyProperties
Definition:
BusyProperties.cs:8
Csla.Analyzers.IntegrationTests.BusyProperties.IdProperty
static readonly PropertyInfo< int > IdProperty
Definition:
BusyProperties.cs:9
Csla.Analyzers.IntegrationTests.BusyProperties.Id
int Id
Definition:
BusyProperties.cs:11
Csla.BusinessBase
This is the base class from which most business objects will be derived.
Definition:
BusinessBase.cs:38
Csla.PropertyInfo
Maintains metadata about a property.
Definition:
Csla/PropertyInfo.cs:22
Csla.Analyzers.IntegrationTests
Definition:
BusinessRuleCases.cs:5
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
Generated by
1.9.2