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
TestBusinessBindingList.cs
Go to the documentation of this file.
1using System;
2using Csla;
4
6{
9 BusinessBindingListBase<TestBusinessBindingList, TestChild>
10 {
11 #region Factory Methods
12
14 { }
15
16 #endregion
17
19 {
21 }
22 #region Data Access
23
24 [Create]
25 private void DataPortal_Create()
26 {
27 }
28 private void DataPortal_Fetch()
29 {
30 RaiseListChangedEvents = false;
31
32 RaiseListChangedEvents = true;
33 }
34
35 #endregion
36 }
37}
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.