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.
Csla.Test.RollBack.RollbackRoot Class Reference
Inheritance diagram for Csla.Test.RollBack.RollbackRoot:
Csla.BusinessBase< RollbackRoot >

Classes

class  Criteria
 

Static Public Member Functions

static RollbackRoot NewRoot (IDataPortal< RollbackRoot > dataPortal)
 
static RollbackRoot GetRoot (string data, IDataPortal< RollbackRoot > dataPortal)
 
static void DeleteRoot (string data, IDataPortal< RollbackRoot > dataPortal)
 

Static Public Attributes

static PropertyInfo< string > DataProperty = RegisterProperty<string>(nameof(Data))
 
static PropertyInfo< bool > FailProperty = RegisterProperty<bool>(nameof(Fail))
 

Protected Member Functions

override object GetIdValue ()
 Override this method to return a unique identifying value for this object. More...
 
void DataPortal_Fetch (Criteria criteria)
 
void DataPortal_Insert ()
 
void DataPortal_Update ()
 
void DataPortal_DeleteSelf ()
 
void DataPortal_Delete (object criteria)
 
override void OnDeserialized (System.Runtime.Serialization.StreamingContext context)
 
- Protected Member Functions inherited from Csla.BusinessBase< RollbackRoot >
virtual async Task< T > SaveAsync (bool forceUpdate, object userState, bool isSync)
 Saves the object to the database. More...
 
virtual void OnSaved (T newObject, Exception e, object userState)
 Raises the Saved event, indicating that the object has been saved, and providing a reference to the new object instance. More...
 

Properties

string Data [getset]
 
bool Fail [getset]
 
- Properties inherited from Csla.BusinessBase< RollbackRoot >
EventHandler< Csla.Core.SavedEventArgsSaved
 Event raised when an object has been saved. More...
 

Additional Inherited Members

- Public Member Functions inherited from Csla.BusinessBase< RollbackRoot >
override string ToString ()
 Returns a text representation of this object by returning the GetIdValue value in text form. More...
 
Clone ()
 Creates a clone of the object. More...
 
Save ()
 Saves the object to the database. More...
 
Save (bool forceUpdate)
 Saves the object to the database, forcing IsNew to false and IsDirty to True. More...
 
async Task< T > SaveAsync ()
 Saves the object to the database. More...
 
async Task< T > SaveAsync (bool forceUpdate)
 Saves the object to the database. More...
 
async Task SaveAndMergeAsync ()
 Saves the object to the database, merging any resulting updates into the existing object graph. More...
 
async Task SaveAndMergeAsync (bool forceUpdate)
 Saves the object to the database, merging any resulting updates into the existing object graph. More...
 
- Static Protected Member Functions inherited from Csla.BusinessBase< RollbackRoot >
static PropertyInfo< P > RegisterProperty< P > (PropertyInfo< P > info)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (string propertyName)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (string propertyName, RelationshipTypes relationship)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, RelationshipTypes relationship)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (string propertyName, string friendlyName)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, string friendlyName)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (string propertyName, string friendlyName, P defaultValue)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, string friendlyName, P defaultValue)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (string propertyName, string friendlyName, P defaultValue, RelationshipTypes relationship)
 Indicates that the specified property belongs to the business object type. More...
 
static PropertyInfo< P > RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, string friendlyName, P defaultValue, RelationshipTypes relationship)
 Indicates that the specified property belongs to the business object type. More...
 
static MethodInfo RegisterMethod (string methodName)
 Registers a method for use in Authorization. More...
 
static MethodInfo RegisterMethod (Expression< Action< T > > methodLambdaExpression)
 Registers a method for use in Authorization. More...
 

Detailed Description

Definition at line 15 of file RollBack/RollbackRoot.cs.

Member Function Documentation

◆ DataPortal_Delete()

void Csla.Test.RollBack.RollbackRoot.DataPortal_Delete ( object  criteria)
protected

Definition at line 110 of file RollBack/RollbackRoot.cs.

◆ DataPortal_DeleteSelf()

void Csla.Test.RollBack.RollbackRoot.DataPortal_DeleteSelf ( )
protected

Definition at line 104 of file RollBack/RollbackRoot.cs.

◆ DataPortal_Fetch()

void Csla.Test.RollBack.RollbackRoot.DataPortal_Fetch ( Criteria  criteria)
protected

Definition at line 80 of file RollBack/RollbackRoot.cs.

◆ DataPortal_Insert()

void Csla.Test.RollBack.RollbackRoot.DataPortal_Insert ( )
protected

Definition at line 88 of file RollBack/RollbackRoot.cs.

◆ DataPortal_Update()

void Csla.Test.RollBack.RollbackRoot.DataPortal_Update ( )
protected

Definition at line 94 of file RollBack/RollbackRoot.cs.

◆ DeleteRoot()

static void Csla.Test.RollBack.RollbackRoot.DeleteRoot ( string  data,
IDataPortal< RollbackRoot dataPortal 
)
static

Definition at line 69 of file RollBack/RollbackRoot.cs.

◆ GetIdValue()

override object Csla.Test.RollBack.RollbackRoot.GetIdValue ( )
protectedvirtual

Override this method to return a unique identifying value for this object.

Reimplemented from Csla.BusinessBase< RollbackRoot >.

Definition at line 20 of file RollBack/RollbackRoot.cs.

◆ GetRoot()

static RollbackRoot Csla.Test.RollBack.RollbackRoot.GetRoot ( string  data,
IDataPortal< RollbackRoot dataPortal 
)
static

Definition at line 64 of file RollBack/RollbackRoot.cs.

◆ NewRoot()

static RollbackRoot Csla.Test.RollBack.RollbackRoot.NewRoot ( IDataPortal< RollbackRoot dataPortal)
static

Definition at line 59 of file RollBack/RollbackRoot.cs.

◆ OnDeserialized()

override void Csla.Test.RollBack.RollbackRoot.OnDeserialized ( System.Runtime.Serialization.StreamingContext  context)
protected

Definition at line 116 of file RollBack/RollbackRoot.cs.

Member Data Documentation

◆ DataProperty

PropertyInfo<string> Csla.Test.RollBack.RollbackRoot.DataProperty = RegisterProperty<string>(nameof(Data))
static

Definition at line 17 of file RollBack/RollbackRoot.cs.

◆ FailProperty

PropertyInfo<bool> Csla.Test.RollBack.RollbackRoot.FailProperty = RegisterProperty<bool>(nameof(Fail))
static

Definition at line 18 of file RollBack/RollbackRoot.cs.

Property Documentation

◆ Data

string Csla.Test.RollBack.RollbackRoot.Data
getset

Definition at line 25 of file RollBack/RollbackRoot.cs.

◆ Fail

bool Csla.Test.RollBack.RollbackRoot.Fail
getset

Definition at line 31 of file RollBack/RollbackRoot.cs.