Enum WriteMode

Namespace
Wolfgang.Etl.DbClient
Assembly
Wolfgang.Etl.DbClient.dll

Specifies the type of SQL command the DbLoader<TRecord, TProgress> auto-generates from attribute metadata.

public enum WriteMode

Fields

Insert = 0

Generate an INSERT statement. All non-identity-key columns are included.

Update = 1

Generate an UPDATE statement. Requires at least one property decorated with [Key] for the WHERE clause.