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.
TestBindingList.cs
Go to the documentation of this file.
1using System;
2using Csla;
4
6{
8 public class TestBindingList :
9 BusinessListBase<TestBindingList, TestChild>
10 {
12 { }
13
15 {
17 }
18
19 #region Data Access
20
21 [Create]
22 private void DataPortal_Create()
23 {
24 }
25 private void DataPortal_Fetch()
26 {
27 RaiseListChangedEvents = false;
28
29 RaiseListChangedEvents = true;
30 }
31
32 #endregion
33 }
34}
This is the base class from which most business collections or lists will be derived.
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
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
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Create
Create operation.