CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
DataPortalOperations.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="DataPortalOperations.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>List of data portal operations.</summary>
7//-----------------------------------------------------------------------
8using System.ComponentModel;
9
10namespace Csla
11{
15 [EditorBrowsable(EditorBrowsableState.Advanced)]
16 public enum DataPortalOperations : int
17 {
21 Create,
25 Fetch,
30 Update,
34 Delete,
39 }
40}
DataPortalOperations
List of data portal operations.
@ Update
Update operation (includes insert, update and delete self).
@ Execute
Execute operation.
@ Fetch
Fetch operation.
@ Create
Create operation.
@ Delete
Delete operation.