Enum WriteMode
Specifies the type of SQL command the DbLoader<TRecord, TProgress> auto-generates from attribute metadata.
public enum WriteMode
Fields
Insert = 0Generate an INSERT statement. All non-identity-key columns are included.
Update = 1Generate an UPDATE statement. Requires at least one property decorated with
[Key]for the WHERE clause.