Table of Contents

Class ResultInfo

Namespace
Z.BulkOperations
Assembly
Z.EntityFramework.Extensions.dll

Represents the results from executing a bulk operation.

public class ResultInfo
Inheritance
ResultInfo
Inherited Members

Constructors

ResultInfo()

public ResultInfo()

Properties

ResultByTableName

Gets or sets the result dictionary by table name.

public Dictionary<string, ResultInfo> ResultByTableName { get; set; }

Property Value

Dictionary<string, ResultInfo>

The result dictionary by table name.

RowsAffected

Gets or sets the number of rows that are affected by the bulk operation.

public int RowsAffected { get; set; }

Property Value

int

The number of rows that are affected by the bulk operation.

RowsAffectedDeleted

Gets or sets the number of rows DELETED by the bulk operations.

public int RowsAffectedDeleted { get; set; }

Property Value

int

The number of rows DELETED by the bulk operations.

RowsAffectedInserted

Gets or sets the number of rows INSERTED by the bulk operations.

public int RowsAffectedInserted { get; set; }

Property Value

int

The number of rows INSERTED by the bulk operations.

RowsAffectedSoftDeleted

Gets or sets the number of rows SOFT DELETED by the bulk operations.

public int RowsAffectedSoftDeleted { get; set; }

Property Value

int

The number of rows SOFT DELETED by the bulk operations.

RowsAffectedUpdated

Gets or sets the number of rows UPDATED by the bulk operations.

public int RowsAffectedUpdated { get; set; }

Property Value

int

The number of rows UPDATED by the bulk operations.

Type

Gets or sets the type.

public Type Type { get; set; }

Property Value

Type

The type.