Show / Hide Table of Contents

Class InsertUpdateDeleteArgs

Arguments for Insert and Update operations.

Inheritance
object
InsertUpdateDeleteArgs
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Quantellia.WMServer.Asset.DataSource
Assembly: WMServer.dll
Syntax
public class InsertUpdateDeleteArgs

Properties

Data

The data to modify. For an Insert operation, this must have every column of the table.

Declaration
public Dictionary<string, object> Data { get; set; }
Property Value
Type Description
Dictionary<string, object>

Selector

The logic to select what should be modified. This must be supplied when performing Delete and Update operations. This is a generic nullable object, and is expected to be converted to strict typing with Convert(object)

Declaration
public object? Selector { get; set; }
Property Value
Type Description
object

TableName

The table to perform the modification on.

Declaration
public string TableName { get; set; }
Property Value
Type Description
string

TransactionID

Optional TransactionID for insertions on transactions that are ongoing.

Declaration
public string? TransactionID { get; set; }
Property Value
Type Description
string
In this article
Back to top Copyright © 2025 Quantellia LLC.    Version 2.0.0 Revision 399     Last Updated 1/15/2025    DRAFT DOCUMENTATION. SUBJECT TO CHANGE