linq2db by Igor Tkachev, Ilya Chudin, Svyatoslav Danyliv, Dmitry Lukashenko

<PackageReference Include="linq2db" Version="5.0.0-rc.2" />

 PostgreSQLOptions

Specify identifiers quotation logic for SQL generation. Default value: Auto.

public bool NormalizeTimestampData { get; set; }

Enables normalization of DateTime and DateTimeOffset data, passed to query as parameter or passed to BulkCopy<T> APIs, to comform with Npgsql 6 requerements: convert DateTimeOffset value to UTC value with zero OffsetUse Utc for DateTime timestamptz valuesUse Unspecified for DateTime timestamp values with Utc kind Default value: true.

public PostgreSQLOptions(BulkCopyType BulkCopyType = 2, bool NormalizeTimestampData = true, PostgreSQLIdentifierQuoteMode IdentifierQuoteMode = 3)

public static bool op_Equality(PostgreSQLOptions left, PostgreSQLOptions right)

public static bool op_Inequality(PostgreSQLOptions left, PostgreSQLOptions right)

public void Deconstruct(out BulkCopyType BulkCopyType, out bool NormalizeTimestampData, out PostgreSQLIdentifierQuoteMode IdentifierQuoteMode)

public bool Equals(PostgreSQLOptions other)