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
//-----------------------------------------------------------------------
8
using
System;
9
using
Csla
;
10
11
namespace
cslalighttest.NameValueList
12
{
13
[
Serializable
()]
14
public
class
BasicNameValueList
:
NameValueListBase
<Int32, string>
15
{
16
public
static
BasicNameValueList
GetBasicNameValueList
()
17
{
18
return
DataPortal
.
Fetch
<
BasicNameValueList
>();
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
}
Csla.DataPortal
Client side data portal used for making asynchronous data portal calls in .NET.
Definition:
DataPortalT.cs:24
Csla.DataPortal.Fetch
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
Csla.NameValueListBase
This is the base class from which readonly name/value collections should be derived.
Definition:
NameValueListBase.cs:29
cslalighttest.NameValueList.BasicNameValueList
Definition:
BasicNameValueList.cs:15
cslalighttest.NameValueList.BasicNameValueList.DataPortal_Fetch
void DataPortal_Fetch()
Definition:
BasicNameValueList.cs:21
cslalighttest.NameValueList.BasicNameValueList.GetBasicNameValueList
static BasicNameValueList GetBasicNameValueList()
Definition:
BasicNameValueList.cs:16
Csla
Definition:
BusinessRuleCases.cs:5
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
cslalighttest.NameValueList
Definition:
NameValueListTests.cs:26
Generated by
1.9.2