NonTrackedModificationCommandParameters Struct

Definition

Parameters for creating a INonTrackedModificationCommand instance.

This type is typically used by database providers; it is generally not used in application code.

[System.Runtime.CompilerServices.IsReadOnly]
public readonly struct NonTrackedModificationCommandParameters : IEquatable<Microsoft.EntityFrameworkCore.Update.NonTrackedModificationCommandParameters>
[<System.Runtime.CompilerServices.IsReadOnly>]
type NonTrackedModificationCommandParameters = struct
Public Structure NonTrackedModificationCommandParameters
Implements IEquatable(Of NonTrackedModificationCommandParameters)
Inheritance
NonTrackedModificationCommandParameters
Attributes
Implements

Remarks

See Implementation of database providers and extensions for more information and examples.

Constructors

NonTrackedModificationCommandParameters(ITable, Boolean)

Creates a new ModificationCommandParameters instance.

NonTrackedModificationCommandParameters(String, String, Boolean)

Creates a new NonTrackedModificationCommandParameters instance.

Properties

Schema

The schema containing the table, or null to use the default schema.

SensitiveLoggingEnabled

Indicates whether potentially sensitive data (e.g. database values) can be logged.

Table

The table containing the data to be modified.

TableName

The name of the table containing the data to be modified.

Methods

Equals(NonTrackedModificationCommandParameters)
Equals(Object)
GetHashCode()
ToString()

Operators

Equality(NonTrackedModificationCommandParameters, NonTrackedModificationCommandParameters)
Inequality(NonTrackedModificationCommandParameters, NonTrackedModificationCommandParameters)

Applies to