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
ReadOnlyList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ReadOnlyList.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
12namespace Csla.Test.Basic
13{
14#if csla20vb
15 [Serializable()]
16 public class ReadOnlyList : ReadOnlyListBase<ReadOnlyList, object>
17 {
18 #region "Criteria"
19
20 private class Criteria
21 {
22 }
23
24 #endregion
25
26 private ReadOnlyList()
27 {
28 //require use of factory method
29 }
30
31 #region "Factory methods"
32
33 public static ReadOnlyList GetReadOnlyList()
34 {
35 return Csla.DataPortal.Fetch<ReadOnlyList>(new Criteria());
36 }
37
38 #endregion
39
40 #region "Data access"
41
42 protected override void DataPortal_Fetch(object criteria)
43 {
44 TestResults.Reinitialise();
45 TestResults.Add("ReadOnlyList", "Fetched");
46 }
47
48 #endregion
49
50 }
51#elif csla20cs
52 public class ReadOnlyList
53 {
54 }
55#endif
56}
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
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
@ Serializable
Prevents updating or inserting until the transaction is complete.