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
BasicNameValueList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="BasicNameValueList.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 Csla;
10
12{
13 [Serializable()]
14 public class BasicNameValueList : NameValueListBase<Int32, string>
15 {
17 {
19 }
20
21 protected void DataPortal_Fetch()
22 {
23 this.IsReadOnly = false;
24 for (int i = 0; i < 10; i++)
25 {
26 this.Add(new NameValuePair(i, "element_" + i.ToString()));
27 }
28 this.IsReadOnly = true;
29 }
30 }
31}
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
This is the base class from which readonly name/value collections should be derived.
@ Serializable
Prevents updating or inserting until the transaction is complete.