8using System.Collections.Generic;
20 [System.Diagnostics.DebuggerNonUserCode]
61 BusinessRules.CheckRules();
68 BusinessRules.CheckRules();
71 private void DoCreate(
int id)
74#pragma warning disable CS0618
77#pragma warning restore CS0618
80 throw new Exception(
"Bad data");
83 private void DataPortal_Fetch()
88 private void DataPortal_Fetch(
int id)
93 private void DoFetch(
int id)
96#pragma warning disable CS0618
99#pragma warning restore CS0618
102 throw new Exception(
"Bad data");
108 DoInsertUpdate(
false);
114 DoInsertUpdate(
true);
117 private void DoInsertUpdate(
bool isUpdate)
119 var insertOrUpdate = isUpdate ?
"Updated" :
"Inserted";
121#pragma warning disable CS0618
124#pragma warning restore CS0618
131#pragma warning disable CS0618
134#pragma warning restore CS0618
139 private void DataPortal_Delete(
int id)
141#pragma warning disable CS0618
144#pragma warning restore CS0618
151 public class SingleWithFactory :
BusinessBase<SingleWithFactory>
178 private void DataPortal_Create(
int id)
181 throw new Exception(
"bad value");
183 BusinessRules.CheckRules();
186 private void DataPortal_Fetch()
191 private void DataPortal_Fetch(
int id)
194 throw new Exception(
"bad value");
196 BusinessRules.CheckRules();
203 throw new Exception(
"bad value");
210 throw new Exception(
"bad value");
217 throw new Exception(
"bad value");
221 private void DataPortal_Delete(
int id)
224 throw new Exception(
"bad value");
230 public class SingleCommand :
CommandBase<SingleCommand>
243 throw new Exception(
"bad value");
Csla.Test.DataPortalTest.Single Single
Provides consistent context information between the client and server DataPortal objects.
void Clear()
Clears all context collections.
This is the base class from which most business objects will be derived.
This is the base class from which command objects will be derived.
Client side data portal used for making asynchronous data portal calls in .NET.
void Delete(params object[] criteria)
Called by a factory method in a business class or by the UI to delete an object.
T Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
T Fetch(params object[] criteria)
Called by a factory method in a business class to Fetch a new object, which is loaded with default va...
Maintains metadata about a property.
Base class to be used when creating a data portal factory object.
void DataPortal_DeleteSelf()
static readonly PropertyInfo< int > IdProperty
static readonly PropertyInfo< int > ValueProperty
void DataPortal_Execute()
void DataPortal_Create(int id)
static Single NewObject()
void DataPortal_DeleteSelf()
static void DeleteObject(int id)
static readonly PropertyInfo< int > IdProperty
static Single GetObject(int id)
static readonly PropertyInfo< string > MethodCalledProperty
async Task< object > Create()
async Task< object > Fetch()
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).
@ Execute
Execute operation.
@ Create
Create operation.
@ Delete
Delete operation.