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
Silverlight/Server/DataPortal/Single.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="Single.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.Collections.Generic;
9using System.Text;
10using Csla;
11using System;
12using System.Threading.Tasks;
13
14using Csla.Core;
15using Csla.Server;
16
18{
19#if TESTING
20 [System.Diagnostics.DebuggerNonUserCode]
21#endif
23 public class Single : BusinessBase<Single>
24 {
25 public readonly static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id);
26 public int Id
27 {
28 get { return GetProperty(IdProperty); }
29 set { SetProperty(IdProperty, value); }
30 }
31
32 public readonly static PropertyInfo<string> MethodCalledProperty = RegisterProperty<string>(c => c.MethodCalled, "MethodCalled");
33 public string MethodCalled
34 {
35 get { return GetProperty(MethodCalledProperty); }
36 set { SetProperty(MethodCalledProperty, value); }
37 }
38
39 public static Single NewObject()
40 {
41 return Csla.DataPortal.Create<Single>();
42 }
43
44 public static Single GetObject(int id)
45 {
46 return Csla.DataPortal.Fetch<Single>(id);
47 }
48
49 public static void DeleteObject(int id)
50 {
52 }
53
54 public Single()
55 { }
56
57 [Create]
58 protected void DataPortal_Create()
59 {
60 DoCreate(0);
61 BusinessRules.CheckRules();
62 }
63
64 [Create]
65 protected void DataPortal_Create(int id)
66 {
67 DoCreate(id);
68 BusinessRules.CheckRules();
69 }
70
71 private void DoCreate(int id)
72 {
73 Id = id;
74#pragma warning disable CS0618 // Type or member is obsolete
75 ApplicationContext.GlobalContext.Clear();
76 ApplicationContext.GlobalContext.Add("Single", "Created");
77#pragma warning restore CS0618 // Type or member is obsolete
78 MethodCalled = "Created";
79 if (id == 9999)
80 throw new Exception("Bad data");
81 }
82
83 private void DataPortal_Fetch()
84 {
85 DoFetch(0);
86 }
87
88 private void DataPortal_Fetch(int id)
89 {
90 DoFetch(id);
91 }
92
93 private void DoFetch(int id)
94 {
95 Id = id;
96#pragma warning disable CS0618 // Type or member is obsolete
97 ApplicationContext.GlobalContext.Clear();
98 ApplicationContext.GlobalContext.Add("Single", "Fetched");
99#pragma warning restore CS0618 // Type or member is obsolete
100 MethodCalled = "Fetched";
101 if (id == 9999)
102 throw new Exception("Bad data");
103 }
104
105 [Insert]
106 protected void DataPortal_Insert()
107 {
108 DoInsertUpdate(false);
109 }
110
111 [Update]
112 protected void DataPortal_Update()
113 {
114 DoInsertUpdate(true);
115 }
116
117 private void DoInsertUpdate(bool isUpdate)
118 {
119 var insertOrUpdate = isUpdate ? "Updated" : "Inserted";
120
121#pragma warning disable CS0618 // Type or member is obsolete
122 ApplicationContext.GlobalContext.Clear();
123 ApplicationContext.GlobalContext.Add("Single", insertOrUpdate);
124#pragma warning restore CS0618 // Type or member is obsolete
125 MethodCalled = insertOrUpdate;
126 }
127
128 [DeleteSelf]
129 protected void DataPortal_DeleteSelf()
130 {
131#pragma warning disable CS0618 // Type or member is obsolete
132 Csla.ApplicationContext.GlobalContext.Clear();
133 ApplicationContext.GlobalContext.Add("Single", "SelfDeleted");
134#pragma warning restore CS0618 // Type or member is obsolete
135 MethodCalled = "SelfDeleted";
136 }
137
138 [Delete]
139 private void DataPortal_Delete(int id)
140 {
141#pragma warning disable CS0618 // Type or member is obsolete
142 Csla.ApplicationContext.GlobalContext.Clear();
143 ApplicationContext.GlobalContext.Add("Single", "Deleted");
144#pragma warning restore CS0618 // Type or member is obsolete
145 MethodCalled = "Deleted";
146 }
147 }
148
150 [ObjectFactory(typeof(SingleWithFactoryFactory))]
151 public class SingleWithFactory : BusinessBase<SingleWithFactory>
152 {
153 }
154
155 public class SingleWithFactoryFactory : ObjectFactory
156 {
157 public async Task<object> Fetch()
158 {
159 return await Task.Run(() => new SingleWithFactory());
160 }
161
162 public async Task<object> Create()
163 {
164 return await Task.Run(() => new SingleWithFactory());
165 }
166 }
167
169 public class Single2 : BusinessBase<Single2>
170 {
171 public static readonly PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id);
172 public int Id
173 {
174 get { return GetProperty(IdProperty); }
175 set { SetProperty(IdProperty, value); }
176 }
177
178 private void DataPortal_Create(int id)
179 {
180 if (id == 9999)
181 throw new Exception("bad value");
182 Id = id;
183 BusinessRules.CheckRules();
184 }
185
186 private void DataPortal_Fetch()
187 {
188 DataPortal_Fetch(0);
189 }
190
191 private void DataPortal_Fetch(int id)
192 {
193 if (id == 9999)
194 throw new Exception("bad value");
195 Id = id;
196 BusinessRules.CheckRules();
197 }
198
199 [Insert]
200 protected void DataPortal_Insert()
201 {
202 if (Id == 555)
203 throw new Exception("bad value");
204 }
205
206 [Update]
207 protected void DataPortal_Update()
208 {
209 if (Id == 555)
210 throw new Exception("bad value");
211 }
212
213 [DeleteSelf]
214 protected void DataPortal_DeleteSelf()
215 {
216 if (Id == 555)
217 throw new Exception("bad value");
218 }
219
220 [Delete]
221 private void DataPortal_Delete(int id)
222 {
223 if (Id == 555)
224 throw new Exception("bad value");
225 Id = id;
226 }
227 }
228
230 public class SingleCommand : CommandBase<SingleCommand>
231 {
232 public static readonly PropertyInfo<int> ValueProperty = RegisterProperty<int>(c => c.Value);
233 public int Value
234 {
235 get { return ReadProperty(ValueProperty); }
236 set { LoadProperty(ValueProperty, value); }
237 }
238
239 [Execute]
240 protected void DataPortal_Execute()
241 {
242 if (Value == 555)
243 throw new Exception("bad value");
244 Value += 1;
245 }
246 }
247}
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.
Definition: BusinessBase.cs:38
This is the base class from which command objects will be derived.
Definition: CommandBase.cs:51
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
void Delete(params object[] criteria)
Called by a factory method in a business class or by the UI to delete an object.
Definition: DataPortalT.cs:545
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...
Definition: DataPortalT.cs:151
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...
Definition: DataPortalT.cs:247
Maintains metadata about a property.
Base class to be used when creating a data portal factory object.
static readonly PropertyInfo< int > IdProperty
static readonly PropertyInfo< int > ValueProperty
static readonly PropertyInfo< int > IdProperty
static readonly PropertyInfo< string > MethodCalledProperty
@ 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.