Class QueryOptions
public class QueryOptions
- Inheritance
-
QueryOptions
- Inherited Members
- Extension Methods
Properties
Count
Count algorithm to use to count rows in a table.
public QueryOptions.CountType Count { get; set; }
Property Value
DuplicateResolution
Specifies if duplicate rows should be ignored and not inserted.
public QueryOptions.DuplicateResolutionType DuplicateResolution { get; set; }
Property Value
OnConflict
/// By specifying the onConflict query parameter, you can make UPSERT work on a column(s) that has a UNIQUE constraint.
public string? OnConflict { get; set; }
Property Value
Returning
By default the new record is returned. Set this to 'Minimal' if you don't need this value.
public QueryOptions.ReturnType Returning { get; set; }
Property Value
Upsert
If the record should be upserted
public bool Upsert { get; set; }
Property Value
Methods
ToHeaders()
public Dictionary<string, string> ToHeaders()