This is the base class from which most business objects will be derived. More...
Public Member Functions | |
override string | ToString () |
Returns a text representation of this object by returning the GetIdValue value in text form. More... | |
T | Clone () |
Creates a clone of the object. More... | |
T | Save () |
Saves the object to the database. 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... | |
T | Save (bool forceUpdate) |
Saves the object to the database, forcing IsNew to false and IsDirty to True. 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... | |
![]() | |
virtual bool | CanReadProperty (Csla.Core.IPropertyInfo property) |
Returns true if the user is allowed to read the calling property. More... | |
bool | CanReadProperty (Csla.Core.IPropertyInfo property, bool throwOnFalse) |
Returns true if the user is allowed to read the calling property. More... | |
bool | CanReadProperty (string propertyName) |
Returns true if the user is allowed to read the specified property. More... | |
virtual bool | CanWriteProperty (Csla.Core.IPropertyInfo property) |
Returns true if the user is allowed to write the specified property. More... | |
bool | CanWriteProperty (Csla.Core.IPropertyInfo property, bool throwOnFalse) |
Returns true if the user is allowed to write the calling property. More... | |
bool | CanWriteProperty (string propertyName) |
Returns true if the user is allowed to write the specified property. More... | |
virtual bool | CanExecuteMethod (Csla.Core.IMemberInfo method) |
Returns true if the user is allowed to execute the specified method. More... | |
bool | CanExecuteMethod (Csla.Core.IMemberInfo method, bool throwOnFalse) |
Returns true if the user is allowed to execute the specified method. More... | |
virtual bool | CanExecuteMethod (string methodName) |
Returns true if the user is allowed to execute the specified method. More... | |
void | BeginEdit () |
Starts a nested edit on the object. More... | |
void | CancelEdit () |
Cancels the current edit process, restoring the object's state to its previous values. More... | |
void | ApplyEdit () |
Commits the current edit process. More... | |
virtual void | Delete () |
Marks the object for deletion. More... | |
virtual bool | IsPropertyBusy (Csla.Core.IPropertyInfo property) |
Gets a value indicating whether a specific property is busy (has a currently executing async rule). More... | |
bool | IsPropertyBusy (string propertyName) |
Gets a value indicating whether a specific property is busy (has a currently executing async rule). More... | |
BrokenRulesCollection | GetBrokenRules () |
Gets the broken rules for this object More... | |
![]() | |
bool | CanWriteProperty (Csla.Core.IPropertyInfo property) |
Returns true if the user is allowed to write the to the specified property. More... | |
bool | CanReadProperty (Csla.Core.IPropertyInfo property) |
Returns true if the user is allowed to read the specified property. More... | |
bool | CanExecuteMethod (Csla.Core.IMemberInfo method) |
Returns true if the user is allowed to execute the specified method. More... | |
![]() | |
void | RemoveChild (Core.IEditableBusinessObject child) |
This method is called by a child object when it wants to be removed from the collection. More... | |
Protected Member Functions | |
virtual object | GetIdValue () |
Override this method to return a unique identifying value for this object. More... | |
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... | |
![]() | |
BusinessBase () | |
Creates an instance of the type. More... | |
override void | OnApplicationContextSet () |
Method invoked after ApplicationContext is available. More... | |
virtual void | Initialize () |
Override this method to set up event handlers so user code in a partial class can respond to events raised by generated code. More... | |
virtual void | SetParent (Core.IParent parent) |
Used by BusinessListBase as a child object is created to tell the child object about its parent. More... | |
virtual void | MarkNew () |
Marks the object as being a new object. More... | |
virtual void | MarkOld () |
Marks the object as being an old (not new) object. More... | |
void | MarkDeleted () |
Marks an object for deletion. More... | |
void | MarkDirty () |
Marks an object as being dirty, or changed. More... | |
void | MarkDirty (bool suppressEvent) |
Marks an object as being dirty, or changed. More... | |
virtual void | PropertyHasChanged (Csla.Core.IPropertyInfo property) |
Performs processing required when a property has changed. More... | |
virtual void | MetaPropertyHasChanged (string name) |
Raises OnPropertyChanged for meta properties (IsXYZ) when PropertyChangedMode is not Windows More... | |
virtual void | CheckPropertyRules (IPropertyInfo property) |
Check rules for the property and notifies UI of properties that may have changed. More... | |
virtual void | CheckObjectRules () |
Check object rules and notifies UI of properties that may have changed. More... | |
void | MarkClean () |
Forces the object's IsDirty flag to false. More... | |
override void | UndoChangesComplete () |
Called when an undo operation has completed. More... | |
override void | AcceptChangesComplete () |
Notifies the parent object (if any) that this child object's edits have been accepted. More... | |
void | MarkAsChild () |
Marks the object as being a child object. More... | |
virtual object | GetClone () |
Creates a clone of the object. More... | |
virtual void | OnValidationComplete () |
Raises the ValidationComplete event More... | |
BusinessRuleManager | GetRegisteredRules () |
Gets the registered rules. More... | |
virtual void | AddBusinessRules () |
Override this method in your business class to be notified when you need to set up shared business rules. More... | |
virtual void | DataPortal_OnDataPortalInvoke (DataPortalEventArgs e) |
Called by the server-side DataPortal prior to calling the requested DataPortal_XYZ method. More... | |
virtual void | DataPortal_OnDataPortalInvokeComplete (DataPortalEventArgs e) |
Called by the server-side DataPortal after calling the requested DataPortal_XYZ method. More... | |
virtual void | DataPortal_OnDataPortalException (DataPortalEventArgs e, Exception ex) |
Called by the server-side DataPortal if an exception occurs during data access. More... | |
virtual void | Child_Create () |
Override this method to load a new business object with default values from the database. More... | |
virtual void | Child_OnDataPortalInvoke (DataPortalEventArgs e) |
Called by the server-side DataPortal prior to calling the requested DataPortal_XYZ method. More... | |
virtual void | Child_OnDataPortalInvokeComplete (DataPortalEventArgs e) |
Called by the server-side DataPortal after calling the requested DataPortal_XYZ method. More... | |
virtual void | Child_OnDataPortalException (DataPortalEventArgs e, Exception ex) |
Called by the server-side DataPortal if an exception occurs during data access. More... | |
virtual void | OnErrorsChanged (string propertyName) |
Call to indicate that errors have changed for a property. More... | |
override void | OnPropertyChanged (IPropertyInfo propertyInfo) |
Call this method to raise the PropertyChanged event for a specific property. More... | |
virtual void | OnDeserialized (System.Runtime.Serialization.StreamingContext context) |
This method is called on a newly deserialized object after deserialization is complete. More... | |
void | AddEventHooks (IBusinessObject child) |
For internal use. More... | |
virtual void | OnAddEventHooks (IBusinessObject child) |
Hook child object events. More... | |
void | RemoveEventHooks (IBusinessObject child) |
For internal use only. More... | |
virtual void | OnRemoveEventHooks (IBusinessObject child) |
Unhook child object events. More... | |
P | GetProperty< P > (string propertyName, P field, P defaultValue) |
Gets a property's value, first checking authorization. More... | |
P | GetProperty< P > (string propertyName, P field, P defaultValue, Security.NoAccessBehavior noAccess) |
Gets a property's value, first checking authorization. More... | |
P | GetProperty< P > (PropertyInfo< P > propertyInfo, P field) |
Gets a property's value, first checking authorization. More... | |
P | GetProperty< P > (PropertyInfo< P > propertyInfo, P field, P defaultValue, Security.NoAccessBehavior noAccess) |
Gets a property's value, first checking authorization. More... | |
P | GetPropertyConvert< F, P > (PropertyInfo< F > propertyInfo, F field) |
Gets a property's value as a specified type, first checking authorization. More... | |
P | GetPropertyConvert< F, P > (PropertyInfo< F > propertyInfo, F field, Security.NoAccessBehavior noAccess) |
Gets a property's value as a specified type, first checking authorization. More... | |
P | GetProperty< P > (PropertyInfo< P > propertyInfo) |
Gets a property's managed field value, first checking authorization. More... | |
P | GetPropertyConvert< F, P > (PropertyInfo< F > propertyInfo) |
Gets a property's value from the list of managed field values, first checking authorization, and converting the value to an appropriate type. More... | |
P | GetPropertyConvert< F, P > (PropertyInfo< F > propertyInfo, Security.NoAccessBehavior noAccess) |
Gets a property's value from the list of managed field values, first checking authorization, and converting the value to an appropriate type. More... | |
P | GetProperty< P > (PropertyInfo< P > propertyInfo, Security.NoAccessBehavior noAccess) |
Gets a property's value as a specified type, first checking authorization. More... | |
object | GetProperty (IPropertyInfo propertyInfo) |
Gets a property's value as a specified type. More... | |
P | GetProperty< P > (IPropertyInfo propertyInfo) |
Gets a property's managed field value, first checking authorization. More... | |
P | LazyGetProperty< P > (PropertyInfo< P > property, Func< P > valueGenerator) |
Lazily initializes a property and returns the resulting value. More... | |
bool | PropertyIsLoading (IPropertyInfo propertyInfo) |
Gets a value indicating whether a lazy loaded property is currently being retrieved. More... | |
P | LazyGetPropertyAsync< P > (PropertyInfo< P > property, Task< P > factory) |
Lazily initializes a property and returns the resulting value. More... | |
P | ReadPropertyConvert< F, P > (PropertyInfo< F > propertyInfo) |
Gets a property's value from the list of managed field values, converting the value to an appropriate type. More... | |
P | ReadProperty< P > (PropertyInfo< P > propertyInfo) |
Gets a property's value as a specified type. More... | |
virtual object | ReadProperty (IPropertyInfo propertyInfo) |
Gets a property's value. More... | |
P | LazyReadProperty< P > (PropertyInfo< P > property, Func< P > valueGenerator) |
Gets a property's value as a specified type. More... | |
P | LazyReadPropertyAsync< P > (PropertyInfo< P > property, Task< P > factory) |
Gets a property's value as a specified type. More... | |
void | SetProperty< P > (PropertyInfo< P > propertyInfo, ref P field, P newValue) |
Sets a property's backing field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetProperty< P > (string propertyName, ref P field, P newValue) |
Sets a property's backing field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetPropertyConvert< P, V > (PropertyInfo< P > propertyInfo, ref P field, V newValue) |
Sets a property's backing field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetPropertyConvert< P, V > (PropertyInfo< P > propertyInfo, ref P field, V newValue, Security.NoAccessBehavior noAccess) |
Sets a property's backing field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetProperty< P > (string propertyName, ref P field, P newValue, Security.NoAccessBehavior noAccess) |
Sets a property's backing field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetPropertyConvert< P, V > (string propertyName, ref P field, V newValue, Security.NoAccessBehavior noAccess) |
Sets a property's backing field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetProperty< P > (PropertyInfo< P > propertyInfo, P newValue) |
Sets a property's managed field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetPropertyConvert< P, F > (PropertyInfo< P > propertyInfo, F newValue) |
Sets a property's managed field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetPropertyConvert< P, F > (PropertyInfo< P > propertyInfo, F newValue, Security.NoAccessBehavior noAccess) |
Sets a property's managed field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetProperty< P > (PropertyInfo< P > propertyInfo, P newValue, Security.NoAccessBehavior noAccess) |
Sets a property's managed field with the supplied value, first checking authorization, and then calling PropertyHasChanged if the value does change. More... | |
void | SetProperty (IPropertyInfo propertyInfo, object newValue) |
Sets a property's managed field with the supplied value, and then calls PropertyHasChanged if the value does change. More... | |
void | SetProperty< P > (IPropertyInfo propertyInfo, P newValue) |
Sets a property's managed field with the supplied value, and then calls PropertyHasChanged if the value does change. More... | |
void | LoadPropertyConvert< P, F > (PropertyInfo< P > propertyInfo, F newValue) |
Loads a property's managed field with the supplied value. More... | |
void | LoadProperty< P > (PropertyInfo< P > propertyInfo, P newValue) |
Loads a property's managed field with the supplied value. More... | |
bool | LoadPropertyMarkDirty< P > (PropertyInfo< P > propertyInfo, P newValue) |
Loads a property's managed field with the supplied value and mark field as dirty if value is modified. More... | |
virtual bool | LoadPropertyMarkDirty (IPropertyInfo propertyInfo, object newValue) |
Loads a property's managed field with the supplied value. More... | |
virtual void | LoadProperty (IPropertyInfo propertyInfo, object newValue) |
Loads a property's managed field with the supplied value. More... | |
void | LoadPropertyAsync< R > (PropertyInfo< R > property, Task< R > factory) |
Load a property from an async method. More... | |
void | MarkBusy () |
Mark the object as busy (it is running an async operation). More... | |
void | MarkIdle () |
Mark the object as not busy (it is not running an async operation). More... | |
virtual void | OnBusyChanged (BusyChangedEventArgs args) |
Raise the BusyChanged event. More... | |
virtual void | OnUnhandledAsyncException (ErrorEventArgs error) |
Raises the UnhandledAsyncException event. More... | |
void | OnUnhandledAsyncException (object originalSender, Exception error) |
Raises the UnhandledAsyncException event. More... | |
virtual void | OnChildChanged (ChildChangedEventArgs e) |
Raises the ChildChanged event, indicating that a child object has been changed. More... | |
virtual void | EditChildComplete (Core.IEditableBusinessObject child) |
Override this method to be notified when a child object's Core.BusinessBase.ApplyEdit method has completed. More... | |
override void | OnGetState (Csla.Serialization.Mobile.SerializationInfo info, StateMode mode) |
Override this method to insert your field values into the MobileFormatter serialzation stream. More... | |
override void | OnSetState (Csla.Serialization.Mobile.SerializationInfo info, StateMode mode) |
Override this method to retrieve your field values from the MobileFormatter serialzation stream. More... | |
override void | OnGetChildren (Csla.Serialization.Mobile.SerializationInfo info, Csla.Serialization.Mobile.MobileFormatter formatter) |
Override this method to insert your child object references into the MobileFormatter serialzation stream. More... | |
override void | OnSetChildren (Csla.Serialization.Mobile.SerializationInfo info, Csla.Serialization.Mobile.MobileFormatter formatter) |
Override this method to retrieve your child object references from the MobileFormatter serialzation stream. More... | |
![]() | |
UndoableBase () | |
Creates an instance of the type. More... | |
virtual void | CopyingState () |
This method is invoked before the CopyState operation begins. More... | |
virtual void | CopyStateComplete () |
This method is invoked after the CopyState operation is complete. More... | |
virtual void | UndoingChanges () |
This method is invoked after the UndoChanges operation is complete. More... | |
virtual void | AcceptingChanges () |
This method is invoked before the AcceptChanges operation begins. More... | |
override void | OnGetState (SerializationInfo info, StateMode mode) |
Override this method to insert your field values into the MobileFormatter serialzation stream. More... | |
override void | OnSetState (SerializationInfo info, StateMode mode) |
Override this method to retrieve your field values from the MobileFormatter serialzation stream. More... | |
![]() | |
BindableBase () | |
Creates an instance of the type. More... | |
virtual bool | ShouldHandlerSerialize (PropertyChangedEventHandler value) |
Override this method to change the default logic for determining if the event handler should be serialized More... | |
virtual void | OnPropertyChanged (string propertyName) |
Call this method to raise the PropertyChanged event for a specific property. More... | |
virtual void | OnMetaPropertyChanged (string propertyName) |
virtual void | OnIsDirtyChanged () |
Call this method to raise the PropertyChanged event for all object properties. More... | |
virtual void | OnUnknownPropertyChanged () |
Call this method to raise the PropertyChanged event for all object properties. More... | |
virtual void | OnIsDirtyChanging () |
Call this method to raise the PropertyChanging event for all object properties. More... | |
virtual void | OnUnknownPropertyChanging () |
Call this method to raise the PropertyChanging event for all object properties. More... | |
virtual void | OnPropertyChanging (string propertyName) |
Call this method to raise the PropertyChanging event for a specific property. More... | |
virtual void | OnPropertyChanging (IPropertyInfo propertyInfo) |
Call this method to raise the PropertyChanging event for a specific property. More... | |
virtual bool | ShouldHandlerSerialize (PropertyChangingEventHandler value) |
Override this method to change the default logic for determining if the event handler should be serialized More... | |
![]() | |
virtual void | OnGetChildren (SerializationInfo info, MobileFormatter formatter) |
Override this method to insert your child object references into the MobileFormatter serialzation stream. More... | |
virtual void | OnSetChildren (SerializationInfo info, MobileFormatter formatter) |
Override this method to retrieve your child object references from the MobileFormatter serialzation stream. More... | |
Static Protected Member Functions | |
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... | |
![]() | |
static Csla.Core.IMemberInfo | RegisterMethod (Type objectType, IMemberInfo info) |
Indicates that the specified method belongs to the type. More... | |
static MethodInfo | RegisterMethod (Type objectType, string methodName) |
Indicates that the specified method belongs to the type. More... | |
static PropertyInfo< P > | RegisterProperty< P > (Type objectType, PropertyInfo< P > info) |
Indicates that the specified property belongs to the type. More... | |
Properties | |
EventHandler< Csla.Core.SavedEventArgs > | Saved |
Event raised when an object has been saved. More... | |
![]() | |
Core.IParent | Parent [get] |
Provide access to the parent reference for use in child object code. More... | |
bool | IsNew [get] |
Returns true if this is a new object, false if it is a pre-existing object. More... | |
bool | IsDeleted [get] |
Returns true if this object is marked for deletion. More... | |
virtual bool | IsDirty [get] |
Returns true if this object's data, or any of its fields or child objects data, has been changed. More... | |
virtual bool | IsSelfDirty [get] |
Returns true if this object's data has been changed. More... | |
virtual bool | IsSavable [get] |
Returns true if this object is both dirty and valid. More... | |
bool | DisableIEditableObject [getset] |
Gets or sets a value indicating whether the IEditableObject interface methods should be disabled for this object. More... | |
bool | IsChild [get] |
Returns true if this is a child (non-root) object. More... | |
EventHandler | ValidationComplete |
Event raised when validation is complete. More... | |
BusinessRules | BusinessRules [get] |
Provides access to the broken rules functionality. More... | |
virtual bool | IsValid [get] |
Returns true if the object and its child objects are currently valid, false if the object or any of its child objects have broken rules or are otherwise invalid. More... | |
virtual bool | IsSelfValid [get] |
Returns true if the object is currently valid, false if the object has broken rules or is otherwise invalid. More... | |
virtual Rules.BrokenRulesCollection | BrokenRulesCollection [get] |
Provides access to the readonly collection of broken business rules for this object. More... | |
virtual bool | IsBusy [get] |
Gets a value indicating if this object or its child objects are busy. More... | |
virtual bool | IsSelfBusy [get] |
Gets a value indicating if this object is busy. More... | |
BusyChangedEventHandler | BusyChanged |
Event indicating that the IsBusy property has changed. More... | |
EventHandler< ErrorEventArgs > | UnhandledAsyncException |
Event indicating that an exception occurred during the processing of an async operation. More... | |
EventHandler< Csla.Core.ChildChangedEventArgs > | ChildChanged |
Event raised when a child object has been changed. More... | |
FieldDataManager | FieldManager [get] |
Gets the PropertyManager object for this business object. More... | |
![]() | |
ApplicationContext | ApplicationContext [getset] |
Gets or sets a reference to the current ApplicationContext. More... | |
bool | BindingEdit [getset] |
Gets or sets a value indicating whether n-level undo was invoked through IEditableObject. More... | |
int | EditLevel [get] |
Returns the current edit level of the object. More... | |
![]() | |
PropertyChangedEventHandler | PropertyChanged |
Implements a serialization-safe PropertyChanged event. More... | |
PropertyChangingEventHandler | PropertyChanging |
Implements a serialization-safe PropertyChanging event. More... | |
![]() | |
int | EditLevel [get] |
Gets the current edit level of the object. More... | |
![]() | |
ApplicationContext | ApplicationContext [getset] |
Gets or sets the current ApplicationContext object. More... | |
![]() | |
int | EditLevelAdded [getset] |
For internal use only!! More... | |
![]() | |
int | Identity [get] |
Gets a value representing this object instance's unique identity value within the business object graph. More... | |
![]() | |
bool | IsValid [get] |
Returns true if the object and its child objects are currently valid, false if the object or any of its child objects have broken rules or are otherwise invalid. More... | |
bool | IsSelfValid [get] |
Returns true if the object is currently valid, false if the object has broken rules or is otherwise invalid. More... | |
bool | IsDirty [get] |
Returns true if this object's data, or any of its fields or child objects data, has been changed. More... | |
bool | IsSelfDirty [get] |
Returns true if this object's data has been changed. More... | |
bool | IsDeleted [get] |
Returns true if this object is marked for deletion. More... | |
bool | IsNew [get] |
Returns true if this is a new object, false if it is a pre-existing object. More... | |
bool | IsSavable [get] |
Returns true if this object is both dirty and valid. More... | |
bool | IsChild [get] |
Returns true if this is a child object, false if it is a root object. More... | |
![]() | |
bool | IsBusy [get] |
Gets a value indicating whether the object, or any of the object's child objects, are busy running an asynchronous operation. More... | |
bool | IsSelfBusy [get] |
Gets a value indicating whether the object is busy running an asynchronous operation. More... | |
![]() | |
IParent | Parent [get] |
Provide access to the parent reference for use in child object code. More... | |
Additional Inherited Members | |
![]() | |
BusyChangedEventHandler | BusyChanged |
Event raised when the object's busy status changes. More... | |
![]() | |
EventHandler< ErrorEventArgs > | UnhandledAsyncException |
Event indicating that an exception occurred during an asynchronous operation. More... | |
![]() | |
EventHandler< ChildChangedEventArgs > | ChildChanged |
Event indictating that a child object has changed. More... | |
![]() | |
EventHandler< SavedEventArgs > | Saved |
Event raised when an object has been saved. More... | |
This is the base class from which most business objects will be derived.
This class is the core of the CSLA .NET framework. To create a business object, inherit from this class.
Please refer to 'Expert C# 2008 Business Objects' for full details on the use of this base class to create business objects.
T | Type of the business object being defined. |
T | : | BusinessBase<T> |
Definition at line 36 of file BusinessBase.cs.
T Csla.BusinessBase< T >.Clone | ( | ) |
Creates a clone of the object.
Definition at line 79 of file BusinessBase.cs.
|
protectedvirtual |
Override this method to return a unique identifying value for this object.
Reimplemented in Csla.Test.Basic.GenRootBase, Csla.Test.DataBinding.ChildEntity, Csla.Test.AppContext.ExceptionRoot, Csla.Test.AppContext.SimpleRoot, Csla.Test.Security.PermissionsRoot, Csla.Test.Security.PermissionsRoot2, Csla.Test.Basic.Child, Csla.Test.Basic.GenRootBase, Csla.Test.Basic.GrandChild, Csla.Test.ChildrenByInterface.Item1, Csla.Test.ChildrenByInterface.Item2, DataBindingApp.ListObject.DataObject, Csla.Test.DataBinding.ChildEntity, Csla.Test.DataPortalTest.PrimitiveCriteriaSingle, Csla.Test.IO.TestBizObj, Csla.Test.Nullable.NullableObject, Csla.Test.RollBack.RollbackRoot, and Csla.Test.DataPortalTest.PrimitiveCriteriaSingle.
Definition at line 46 of file BusinessBase.cs.
|
protectedvirtual |
Raises the Saved event, indicating that the object has been saved, and providing a reference to the new object instance.
newObject | The new object instance. |
e | Exception that occurred during operation. |
userState | User state object. |
Definition at line 349 of file BusinessBase.cs.
|
staticprotected |
Registers a method for use in Authorization.
methodLambdaExpression | The method lambda expression. |
Definition at line 534 of file BusinessBase.cs.
|
staticprotected |
Registers a method for use in Authorization.
methodName | Method name from nameof() |
Definition at line 524 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyLambdaExpression | Property Expression |
Definition at line 399 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyLambdaExpression | Property Expression |
relationship | Relationship with property value. |
Definition at line 426 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyLambdaExpression | Property Expression |
friendlyName | Friendly description for a property to be used in databinding |
Definition at line 453 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyLambdaExpression | Property Expression |
friendlyName | Friendly description for a property to be used in databinding |
defaultValue | Default Value for the property |
Definition at line 482 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyLambdaExpression | Property Expression |
friendlyName | Friendly description for a property to be used in databinding |
defaultValue | Default Value for the property |
relationship | Relationship with property value. |
Definition at line 513 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property. |
info | PropertyInfo object for the property. |
Definition at line 375 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyName | Property name from nameof() |
Definition at line 387 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyName | Property name from nameof() |
relationship | Relationship with property value. |
Definition at line 413 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyName | Property name from nameof() |
friendlyName | Friendly description for a property to be used in databinding |
Definition at line 440 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyName | Property name from nameof() |
friendlyName | Friendly description for a property to be used in databinding |
defaultValue | Default Value for the property |
Definition at line 468 of file BusinessBase.cs.
|
staticprotected |
Indicates that the specified property belongs to the business object type.
P | Type of property |
propertyName | Property name from nameof() |
friendlyName | Friendly description for a property to be used in databinding |
defaultValue | Default Value for the property |
relationship | Relationship with property value. |
Definition at line 498 of file BusinessBase.cs.
T Csla.BusinessBase< T >.Save | ( | ) |
Saves the object to the database.
Calling this method starts the save operation, causing the object to be inserted, updated or deleted within the database based on the object's current state.
If Core.BusinessBase.IsDeleted is true the object will be deleted. Otherwise, if Core.BusinessBase.IsNew is true the object will be inserted. Otherwise the object's data will be updated in the database.
All this is contingent on Core.BusinessBase.IsDirty. If this value is false, no data operation occurs. It is also contingent on Core.BusinessBase.IsValid. If this value is false an exception will be thrown to indicate that the UI attempted to save an invalid object.
It is important to note that this method returns a new version of the business object that contains any data updated during the save operation. You MUST update all object references to use this new version of the business object in order to have access to the correct object data.
You can override this method to add your own custom behaviors to the save operation. For instance, you may add some security checks to make sure the user can save the object. If all security checks pass, you would then invoke the base Save method via base.Save()
.
Implements Csla.Core.ISavable< T >.
Definition at line 121 of file BusinessBase.cs.
T Csla.BusinessBase< T >.Save | ( | bool | forceUpdate | ) |
Saves the object to the database, forcing IsNew to false and IsDirty to True.
forceUpdate | If true, triggers overriding IsNew and IsDirty. If false then it is the same as calling Save(). |
This overload is designed for use in web applications when implementing the Update method in your data wrapper object.
Implements Csla.Core.ISavable< T >.
Definition at line 232 of file BusinessBase.cs.
async Task Csla.BusinessBase< T >.SaveAndMergeAsync | ( | ) |
Saves the object to the database, merging any resulting updates into the existing object graph.
Implements Csla.Core.ISavable< T >.
Definition at line 250 of file BusinessBase.cs.
async Task Csla.BusinessBase< T >.SaveAndMergeAsync | ( | bool | forceUpdate | ) |
Saves the object to the database, merging any resulting updates into the existing object graph.
forceUpdate | If true, triggers overriding IsNew and IsDirty. If false then it is the same as calling SaveAndMergeAsync(). |
Implements Csla.Core.ISavable< T >.
Definition at line 264 of file BusinessBase.cs.
async Task< T > Csla.BusinessBase< T >.SaveAsync | ( | ) |
Saves the object to the database.
Implements Csla.Core.ISavable< T >.
Definition at line 139 of file BusinessBase.cs.
async Task< T > Csla.BusinessBase< T >.SaveAsync | ( | bool | forceUpdate | ) |
Saves the object to the database.
forceUpdate | If true, triggers overriding IsNew and IsDirty. If false then it is the same as calling Save(). |
Implements Csla.Core.ISavable< T >.
Definition at line 151 of file BusinessBase.cs.
|
protectedvirtual |
Saves the object to the database.
forceUpdate | If true, triggers overriding IsNew and IsDirty. If false then it is the same as calling Save(). |
userState | User state data. |
isSync | True if the save operation should be synchronous. |
Definition at line 165 of file BusinessBase.cs.
override string Csla.BusinessBase< T >.ToString | ( | ) |
Returns a text representation of this object by returning the GetIdValue value in text form.
Definition at line 60 of file BusinessBase.cs.
|
addremove |
Event raised when an object has been saved.
Definition at line 304 of file BusinessBase.cs.