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
SplitBase.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="SplitBase.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Text;
11
13{
14 [Serializable()]
15 public abstract class SplitBase<T> : Csla.BusinessBase<T>
16 where T : SplitBase<T>
17 {
18 #region Business Methods
19
20 public static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id, RelationshipTypes.PrivateField);
21 private int _id = IdProperty.DefaultValue;
22 public int Id
23 {
24 get { return GetProperty(IdProperty, _id); }
25 set { SetProperty(IdProperty, ref _id, value); }
26 }
27
28 #endregion
29
30
31 #region Factory Methods
32
33 public static T NewObject(IDataPortal<T> dataPortal)
34 {
35 return dataPortal.Create();
36 }
37
38 public static T GetObject(int id, IDataPortal<T> dataPortal)
39 {
40 return dataPortal.Fetch(new Criteria(id));
41 }
42
43 public static void DeleteObject(int id, IDataPortal<T> dataPortal)
44 {
45 dataPortal.Delete(new Criteria(id));
46 }
47
48 #endregion
49
50 #region Data Access
51
52 [Serializable()]
53 private class Criteria : CriteriaBase<Criteria>
54 {
55 private int _id;
56 public int Id
57 {
58 get { return _id; }
59 }
60 public Criteria(int id)
61 { _id = id; }
62 }
63
64 [Create]
65 protected void DataPortal_Create()
66 {
67 _id = 0;
69 TestResults.Add("Split", "Created");
70 }
71
72 private void DataPortal_Fetch(Criteria criteria)
73 {
74 _id = criteria.Id;
76 TestResults.Add("Split", "Fetched");
77 }
78
79 [Insert]
80 protected void DataPortal_Insert()
81 {
83 TestResults.Add("Split", "Inserted");
84 }
85
86 [Update]
87 protected void DataPortal_Update()
88 {
90 TestResults.Add("Split", "Updated");
91 }
92
93 [Delete]
94 private void DataPortal_Delete(Criteria criteria)
95 {
97 TestResults.Add("Split", "Deleted");
98 }
99
100 [DeleteSelf]
101 protected void DataPortal_DeleteSelf()
102 {
104 TestResults.Add("Split", "SelfDeleted");
105 }
106
107 #endregion
108
109 }
110}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
virtual void Delete()
Marks the object for deletion.
object GetProperty(IPropertyInfo propertyInfo)
Gets a property's value as a specified type.
void SetProperty(IPropertyInfo propertyInfo, object newValue)
Sets a property's managed field with the supplied value, and then calls PropertyHasChanged if the val...
Base type from which Criteria classes can be derived in a business class.
Definition: CriteriaBase.cs:25
Maintains metadata about a property.
static void DeleteObject(int id, IDataPortal< T > dataPortal)
Definition: SplitBase.cs:43
static T NewObject(IDataPortal< T > dataPortal)
Definition: SplitBase.cs:33
static T GetObject(int id, IDataPortal< T > dataPortal)
Definition: SplitBase.cs:38
static PropertyInfo< int > IdProperty
Definition: SplitBase.cs:20
Static dictionary-like class that offers similar functionality to GlobalContext This is used in tests...
Definition: TestResults.cs:21
static void Reinitialise()
Reinitialise the dictionary, clearing any existing results, ready for the next test
Definition: TestResults.cs:69
static void Add(string key, string value)
Add an item to the test results, to indicate an outcome of a particular operation
Definition: TestResults.cs:29
Interface defining the members of the data portal type.
Definition: IDataPortalT.cs:17
void Delete(params object[] criteria)
Called by a Shared (static in C#) method in the business class to cause immediate deletion of a speci...
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
object Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
RelationshipTypes
List of valid relationship types between a parent object and another object through a managed propert...
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).
@ Create
Create operation.