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
MockList.partial.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="MockList.partial.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.Linq;
11using System.Text;
12using Csla.Data;
14
16{
17 public partial class MockList
18 {
19 private void DataPortal_Fetch()
20 {
21 // fetch with no filter
22 Fetch("");
23 }
24
25 private void DataPortal_Fetch(string criteria)
26 {
27 Fetch(criteria);
28 }
29
30
31 [Update]
32 protected void DataPortal_Update()
33 {
35 }
36 }
37}
virtual void Child_Update(params object[] parameters)
Saves all items in the list, automatically performing insert, update or delete operations as necessar...
@ Update
Update operation (includes insert, update and delete self).