-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecordLists.cs
435 lines (374 loc) · 15.1 KB
/
RecordLists.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
using System;
using System.Data;
using System.Collections;
using System.Runtime.Serialization;
using System.Reflection;
using System.Xml;
using OutSystems.ObjectKeys;
using OutSystems.RuntimeCommon;
using OutSystems.HubEdition.RuntimePlatform;
using OutSystems.HubEdition.RuntimePlatform.Db;
using OutSystems.Internal.Db;
using OutSystems.HubEdition.RuntimePlatform.NewRuntime;
namespace OutSystems.NssTrackChanges {
/// <summary>
/// RecordList type <code>RLIgnoreItemRecordList</code> that represents a record list of
/// <code>IgnoreItem</code>
/// </summary>
[Serializable()]
public partial class RLIgnoreItemRecordList: GenericRecordList<RCIgnoreItemRecord>, IEnumerable, IEnumerator, ISerializable {
public static void EnsureInitialized() {}
protected override RCIgnoreItemRecord GetElementDefaultValue() {
return new RCIgnoreItemRecord("");
}
public T[] ToArray<T>(Func<RCIgnoreItemRecord, T> converter) {
return ToArray(this, converter);
}
public static T[] ToArray<T>(RLIgnoreItemRecordList recordlist, Func<RCIgnoreItemRecord, T> converter) {
return InnerToArray(recordlist, converter);
}
public static implicit operator RLIgnoreItemRecordList(RCIgnoreItemRecord[] array) {
RLIgnoreItemRecordList result = new RLIgnoreItemRecordList();
result.InnerFromArray(array);
return result;
}
public static RLIgnoreItemRecordList ToList<T>(T[] array, Func <T, RCIgnoreItemRecord> converter) {
RLIgnoreItemRecordList result = new RLIgnoreItemRecordList();
result.InnerFromArray(array, converter);
return result;
}
public static RLIgnoreItemRecordList FromRestList<T>(RestList<T> restList, Func <T, RCIgnoreItemRecord> converter) {
RLIgnoreItemRecordList result = new RLIgnoreItemRecordList();
result.InnerFromRestList(restList, converter);
return result;
}
/// <summary>
/// Default Constructor
/// </summary>
public RLIgnoreItemRecordList(): base() {
}
/// <summary>
/// Constructor with transaction parameter
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLIgnoreItemRecordList(IDbTransaction trans): base(trans) {
}
/// <summary>
/// Constructor with transaction parameter and alternate read method
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
/// <param name="alternateReadDBMethod"> Alternate Read Method</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLIgnoreItemRecordList(IDbTransaction trans, ReadDBMethodDelegate alternateReadDBMethod): this(trans) {
this.alternateReadDBMethod = alternateReadDBMethod;
}
/// <summary>
/// Constructor declaration for serialization
/// </summary>
/// <param name="info"> SerializationInfo</param>
/// <param name="context"> StreamingContext</param>
public RLIgnoreItemRecordList(SerializationInfo info, StreamingContext context): base(info, context) {
}
public override BitArray[] GetDefaultOptimizedValues() {
BitArray[] def = new BitArray[1];
def[0] = null;
return def;
}
/// <summary>
/// Create as new list
/// </summary>
/// <returns>The new record list</returns>
protected override OSList<RCIgnoreItemRecord> NewList() {
return new RLIgnoreItemRecordList();
}
} // RLIgnoreItemRecordList
/// <summary>
/// RecordList type <code>RLItemChangedRecordList</code> that represents a record list of
/// <code>ItemChanged</code>
/// </summary>
[Serializable()]
public partial class RLItemChangedRecordList: GenericRecordList<RCItemChangedRecord>, IEnumerable, IEnumerator, ISerializable {
public static void EnsureInitialized() {}
protected override RCItemChangedRecord GetElementDefaultValue() {
return new RCItemChangedRecord("");
}
public T[] ToArray<T>(Func<RCItemChangedRecord, T> converter) {
return ToArray(this, converter);
}
public static T[] ToArray<T>(RLItemChangedRecordList recordlist, Func<RCItemChangedRecord, T> converter) {
return InnerToArray(recordlist, converter);
}
public static implicit operator RLItemChangedRecordList(RCItemChangedRecord[] array) {
RLItemChangedRecordList result = new RLItemChangedRecordList();
result.InnerFromArray(array);
return result;
}
public static RLItemChangedRecordList ToList<T>(T[] array, Func <T, RCItemChangedRecord> converter) {
RLItemChangedRecordList result = new RLItemChangedRecordList();
result.InnerFromArray(array, converter);
return result;
}
public static RLItemChangedRecordList FromRestList<T>(RestList<T> restList, Func <T, RCItemChangedRecord> converter) {
RLItemChangedRecordList result = new RLItemChangedRecordList();
result.InnerFromRestList(restList, converter);
return result;
}
/// <summary>
/// Default Constructor
/// </summary>
public RLItemChangedRecordList(): base() {
}
/// <summary>
/// Constructor with transaction parameter
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLItemChangedRecordList(IDbTransaction trans): base(trans) {
}
/// <summary>
/// Constructor with transaction parameter and alternate read method
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
/// <param name="alternateReadDBMethod"> Alternate Read Method</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLItemChangedRecordList(IDbTransaction trans, ReadDBMethodDelegate alternateReadDBMethod): this(trans) {
this.alternateReadDBMethod = alternateReadDBMethod;
}
/// <summary>
/// Constructor declaration for serialization
/// </summary>
/// <param name="info"> SerializationInfo</param>
/// <param name="context"> StreamingContext</param>
public RLItemChangedRecordList(SerializationInfo info, StreamingContext context): base(info, context) {
}
public override BitArray[] GetDefaultOptimizedValues() {
BitArray[] def = new BitArray[1];
def[0] = null;
return def;
}
/// <summary>
/// Create as new list
/// </summary>
/// <returns>The new record list</returns>
protected override OSList<RCItemChangedRecord> NewList() {
return new RLItemChangedRecordList();
}
} // RLItemChangedRecordList
/// <summary>
/// RecordList type <code>RLObjectChangedRecordList</code> that represents a record list of
/// <code>ObjectChanged</code>
/// </summary>
[Serializable()]
public partial class RLObjectChangedRecordList: GenericRecordList<RCObjectChangedRecord>, IEnumerable, IEnumerator, ISerializable {
public static void EnsureInitialized() {}
protected override RCObjectChangedRecord GetElementDefaultValue() {
return new RCObjectChangedRecord("");
}
public T[] ToArray<T>(Func<RCObjectChangedRecord, T> converter) {
return ToArray(this, converter);
}
public static T[] ToArray<T>(RLObjectChangedRecordList recordlist, Func<RCObjectChangedRecord, T> converter) {
return InnerToArray(recordlist, converter);
}
public static implicit operator RLObjectChangedRecordList(RCObjectChangedRecord[] array) {
RLObjectChangedRecordList result = new RLObjectChangedRecordList();
result.InnerFromArray(array);
return result;
}
public static RLObjectChangedRecordList ToList<T>(T[] array, Func <T, RCObjectChangedRecord> converter) {
RLObjectChangedRecordList result = new RLObjectChangedRecordList();
result.InnerFromArray(array, converter);
return result;
}
public static RLObjectChangedRecordList FromRestList<T>(RestList<T> restList, Func <T, RCObjectChangedRecord> converter) {
RLObjectChangedRecordList result = new RLObjectChangedRecordList();
result.InnerFromRestList(restList, converter);
return result;
}
/// <summary>
/// Default Constructor
/// </summary>
public RLObjectChangedRecordList(): base() {
}
/// <summary>
/// Constructor with transaction parameter
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLObjectChangedRecordList(IDbTransaction trans): base(trans) {
}
/// <summary>
/// Constructor with transaction parameter and alternate read method
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
/// <param name="alternateReadDBMethod"> Alternate Read Method</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLObjectChangedRecordList(IDbTransaction trans, ReadDBMethodDelegate alternateReadDBMethod): this(trans) {
this.alternateReadDBMethod = alternateReadDBMethod;
}
/// <summary>
/// Constructor declaration for serialization
/// </summary>
/// <param name="info"> SerializationInfo</param>
/// <param name="context"> StreamingContext</param>
public RLObjectChangedRecordList(SerializationInfo info, StreamingContext context): base(info, context) {
}
public override BitArray[] GetDefaultOptimizedValues() {
BitArray[] def = new BitArray[1];
def[0] = null;
return def;
}
/// <summary>
/// Create as new list
/// </summary>
/// <returns>The new record list</returns>
protected override OSList<RCObjectChangedRecord> NewList() {
return new RLObjectChangedRecordList();
}
} // RLObjectChangedRecordList
/// <summary>
/// RecordList type <code>RLErrorRecordList</code> that represents a record list of <code>Error</code>
/// </summary>
[Serializable()]
public partial class RLErrorRecordList: GenericRecordList<RCErrorRecord>, IEnumerable, IEnumerator, ISerializable {
public static void EnsureInitialized() {}
protected override RCErrorRecord GetElementDefaultValue() {
return new RCErrorRecord("");
}
public T[] ToArray<T>(Func<RCErrorRecord, T> converter) {
return ToArray(this, converter);
}
public static T[] ToArray<T>(RLErrorRecordList recordlist, Func<RCErrorRecord, T> converter) {
return InnerToArray(recordlist, converter);
}
public static implicit operator RLErrorRecordList(RCErrorRecord[] array) {
RLErrorRecordList result = new RLErrorRecordList();
result.InnerFromArray(array);
return result;
}
public static RLErrorRecordList ToList<T>(T[] array, Func <T, RCErrorRecord> converter) {
RLErrorRecordList result = new RLErrorRecordList();
result.InnerFromArray(array, converter);
return result;
}
public static RLErrorRecordList FromRestList<T>(RestList<T> restList, Func <T, RCErrorRecord> converter) {
RLErrorRecordList result = new RLErrorRecordList();
result.InnerFromRestList(restList, converter);
return result;
}
/// <summary>
/// Default Constructor
/// </summary>
public RLErrorRecordList(): base() {
}
/// <summary>
/// Constructor with transaction parameter
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLErrorRecordList(IDbTransaction trans): base(trans) {
}
/// <summary>
/// Constructor with transaction parameter and alternate read method
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
/// <param name="alternateReadDBMethod"> Alternate Read Method</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLErrorRecordList(IDbTransaction trans, ReadDBMethodDelegate alternateReadDBMethod): this(trans) {
this.alternateReadDBMethod = alternateReadDBMethod;
}
/// <summary>
/// Constructor declaration for serialization
/// </summary>
/// <param name="info"> SerializationInfo</param>
/// <param name="context"> StreamingContext</param>
public RLErrorRecordList(SerializationInfo info, StreamingContext context): base(info, context) {
}
public override BitArray[] GetDefaultOptimizedValues() {
BitArray[] def = new BitArray[1];
def[0] = null;
return def;
}
/// <summary>
/// Create as new list
/// </summary>
/// <returns>The new record list</returns>
protected override OSList<RCErrorRecord> NewList() {
return new RLErrorRecordList();
}
} // RLErrorRecordList
/// <summary>
/// RecordList type <code>RLObjectChangedErrorRecordList</code> that represents a record list of
/// <code>ObjectChanged, Error</code>
/// </summary>
[Serializable()]
public partial class RLObjectChangedErrorRecordList: GenericRecordList<RCObjectChangedErrorRecord>, IEnumerable, IEnumerator, ISerializable {
public static void EnsureInitialized() {}
protected override RCObjectChangedErrorRecord GetElementDefaultValue() {
return new RCObjectChangedErrorRecord("");
}
public T[] ToArray<T>(Func<RCObjectChangedErrorRecord, T> converter) {
return ToArray(this, converter);
}
public static T[] ToArray<T>(RLObjectChangedErrorRecordList recordlist, Func<RCObjectChangedErrorRecord, T> converter) {
return InnerToArray(recordlist, converter);
}
public static implicit operator RLObjectChangedErrorRecordList(RCObjectChangedErrorRecord[] array) {
RLObjectChangedErrorRecordList result = new RLObjectChangedErrorRecordList();
result.InnerFromArray(array);
return result;
}
public static RLObjectChangedErrorRecordList ToList<T>(T[] array, Func <T, RCObjectChangedErrorRecord> converter) {
RLObjectChangedErrorRecordList result = new RLObjectChangedErrorRecordList();
result.InnerFromArray(array, converter);
return result;
}
public static RLObjectChangedErrorRecordList FromRestList<T>(RestList<T> restList, Func <T, RCObjectChangedErrorRecord> converter) {
RLObjectChangedErrorRecordList result = new RLObjectChangedErrorRecordList();
result.InnerFromRestList(restList, converter);
return result;
}
/// <summary>
/// Default Constructor
/// </summary>
public RLObjectChangedErrorRecordList(): base() {
}
/// <summary>
/// Constructor with transaction parameter
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLObjectChangedErrorRecordList(IDbTransaction trans): base(trans) {
}
/// <summary>
/// Constructor with transaction parameter and alternate read method
/// </summary>
/// <param name="trans"> IDbTransaction Parameter</param>
/// <param name="alternateReadDBMethod"> Alternate Read Method</param>
[Obsolete("Use the Default Constructor and set the Transaction afterwards.")]
public RLObjectChangedErrorRecordList(IDbTransaction trans, ReadDBMethodDelegate alternateReadDBMethod): this(trans) {
this.alternateReadDBMethod = alternateReadDBMethod;
}
/// <summary>
/// Constructor declaration for serialization
/// </summary>
/// <param name="info"> SerializationInfo</param>
/// <param name="context"> StreamingContext</param>
public RLObjectChangedErrorRecordList(SerializationInfo info, StreamingContext context): base(info, context) {
}
public override BitArray[] GetDefaultOptimizedValues() {
BitArray[] def = new BitArray[2];
def[0] = null;
def[1] = null;
return def;
}
/// <summary>
/// Create as new list
/// </summary>
/// <returns>The new record list</returns>
protected override OSList<RCObjectChangedErrorRecord> NewList() {
return new RLObjectChangedErrorRecordList();
}
} // RLObjectChangedErrorRecordList
}