From 58986a3a0244913ef20390f48f1f901a3166a2b2 Mon Sep 17 00:00:00 2001 From: Tuomas Hietanen Date: Wed, 9 Oct 2024 14:07:03 +0100 Subject: [PATCH] Update generated documentation for version 1.3.47 --- core/async.html | 28 +++++++++---------- core/crud.html | 11 ++++---- core/mappers.html | 6 ++-- core/mysql.html | 20 ++++++------- core/odbc.html | 1 - core/querying.html | 8 ++---- core/techdetails.html | 4 +-- core/unittest.html | 8 +++--- index.json | 2 +- reference/fsharp-data-sql-array.html | 4 +-- .../fsharp-data-sql-columnschema-alias.html | 4 --- ...data-sql-common-casesensitivitychange.html | 2 -- ...data-sql-common-databaseprovidertypes.html | 2 -- ...rp-data-sql-common-nullablecolumntype.html | 2 -- ...rp-data-sql-common-odbcquotecharacter.html | 2 -- ...data-sql-common-relationshipdirection.html | 2 -- reference/fsharp-data-sql-common-sql.html | 4 +-- .../fsharp-data-sql-common-sqlentity.html | 4 +-- .../fsharp-data-sql-common-sqlitelibrary.html | 2 -- reference/fsharp-data-sql-common-table.html | 4 --- .../fsharp-data-sql-providers-duckdb.html | 4 +-- .../fsharp-data-sql-providers-firebird.html | 4 +-- ...fsharp-data-sql-providers-mssqlserver.html | 4 +-- ...data-sql-providers-mssqlserverdynamic.html | 4 +-- .../fsharp-data-sql-providers-mysql.html | 4 +-- .../fsharp-data-sql-providers-postgresql.html | 4 +-- .../fsharp-data-sql-quotationhelpers.html | 4 +-- ...sharp-data-sql-runtime-sqldatacontext.html | 4 +-- .../fsharp-data-sql-schema-columnlookup.html | 2 -- reference/fsharp-data-sql-schema-sproc.html | 6 ++-- reference/fsharp-data-sql-schema.html | 22 +++++++-------- .../fsharp-data-sql-selectoperations.html | 2 -- ...ta-sql-ssdt-dacpacparser-regexparsers.html | 8 +++--- ...-dacpacparser-ssdtuserdefineddatatype.html | 2 -- ...-data-sql-transactions-isolationlevel.html | 2 -- 35 files changed, 82 insertions(+), 114 deletions(-) diff --git a/core/async.html b/core/async.html index 8ce17265..8f6ed30d 100644 --- a/core/async.html +++ b/core/async.html @@ -412,35 +412,35 @@

W
val id: Guid
Multiple items
[<Struct>] type Guid = - new: b: byte array -> unit + 6 overloads + new: b: byte array -> unit + 5 overloads member CompareTo: value: Guid -> int + 1 overload member Equals: g: Guid -> bool + 1 overload member GetHashCode: unit -> int - member ToByteArray: unit -> byte array + 1 overload + member ToByteArray: unit -> byte array member ToString: unit -> string + 2 overloads - member TryFormat: destination: Span<char> * charsWritten: byref<int> * ?format: ReadOnlySpan<char> -> bool + 1 overload - member TryWriteBytes: destination: Span<byte> -> bool + 1 overload - static member (<) : left: Guid * right: Guid -> bool - static member (<=) : left: Guid * right: Guid -> bool - ...
<summary>Represents a globally unique identifier (GUID).</summary>

--------------------
Guid ()
Guid(b: byte array) : Guid
Guid(b: ReadOnlySpan<byte>) : Guid
Guid(g: string) : Guid
Guid(b: ReadOnlySpan<byte>, bigEndian: bool) : Guid
Guid(a: int, b: int16, c: int16, d: byte array) : Guid
Guid(a: int, b: int16, c: int16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
Guid(a: uint32, b: uint16, c: uint16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
+ member TryFormat: destination: Span<char> * charsWritten: byref<int> * ?format: ReadOnlySpan<char> -> bool + member TryWriteBytes: destination: Span<byte> -> bool + static member (<>) : a: Guid * b: Guid -> bool + static member (=) : a: Guid * b: Guid -> bool + ...
<summary>Represents a globally unique identifier (GUID).</summary>

--------------------
Guid ()
Guid(b: byte array) : Guid
Guid(b: ReadOnlySpan<byte>) : Guid
Guid(g: string) : Guid
Guid(a: int, b: int16, c: int16, d: byte array) : Guid
Guid(a: int, b: int16, c: int16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
Guid(a: uint32, b: uint16, c: uint16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
Multiple items
type Task = interface IAsyncResult interface IDisposable new: action: Action -> unit + 7 overloads - member ConfigureAwait: continueOnCapturedContext: bool -> ConfiguredTaskAwaitable + 1 overload + member ConfigureAwait: continueOnCapturedContext: bool -> ConfiguredTaskAwaitable member ContinueWith: continuationAction: Action<Task,obj> * state: obj -> Task + 19 overloads member Dispose: unit -> unit member GetAwaiter: unit -> TaskAwaiter member RunSynchronously: unit -> unit + 1 overload member Start: unit -> unit + 1 overload - member Wait: unit -> unit + 5 overloads + member Wait: unit -> unit + 4 overloads ...
<summary>Represents an asynchronous operation.</summary>

--------------------
type Task<'TResult> = inherit Task new: ``function`` : Func<obj,'TResult> * state: obj -> unit + 7 overloads - member ConfigureAwait: continueOnCapturedContext: bool -> ConfiguredTaskAwaitable<'TResult> + 1 overload + member ConfigureAwait: continueOnCapturedContext: bool -> ConfiguredTaskAwaitable<'TResult> member ContinueWith: continuationAction: Action<Task<'TResult>,obj> * state: obj -> Task + 19 overloads member GetAwaiter: unit -> TaskAwaiter<'TResult> - member WaitAsync: cancellationToken: CancellationToken -> Task<'TResult> + 4 overloads + member WaitAsync: timeout: TimeSpan -> Task<'TResult> + 2 overloads member Result: 'TResult static member Factory: TaskFactory<'TResult>
<summary>Represents an asynchronous operation that can return a value.</summary>
<typeparam name="TResult">The type of the result produced by this <see cref="T:System.Threading.Tasks.Task`1" />.</typeparam>


--------------------
Task(action: Action) : Task
Task(action: Action, cancellationToken: Threading.CancellationToken) : Task
Task(action: Action, creationOptions: TaskCreationOptions) : Task
Task(action: Action<obj>, state: obj) : Task
Task(action: Action, cancellationToken: Threading.CancellationToken, creationOptions: TaskCreationOptions) : Task
Task(action: Action<obj>, state: obj, cancellationToken: Threading.CancellationToken) : Task
Task(action: Action<obj>, state: obj, creationOptions: TaskCreationOptions) : Task
Task(action: Action<obj>, state: obj, cancellationToken: Threading.CancellationToken, creationOptions: TaskCreationOptions) : Task

--------------------
Task(``function`` : Func<'TResult>) : Task<'TResult>
Task(``function`` : Func<obj,'TResult>, state: obj) : Task<'TResult>
Task(``function`` : Func<'TResult>, cancellationToken: Threading.CancellationToken) : Task<'TResult>
Task(``function`` : Func<'TResult>, creationOptions: TaskCreationOptions) : Task<'TResult>
Task(``function`` : Func<obj,'TResult>, state: obj, cancellationToken: Threading.CancellationToken) : Task<'TResult>
Task(``function`` : Func<obj,'TResult>, state: obj, creationOptions: TaskCreationOptions) : Task<'TResult>
Task(``function`` : Func<'TResult>, cancellationToken: Threading.CancellationToken, creationOptions: TaskCreationOptions) : Task<'TResult>
Task(``function`` : Func<obj,'TResult>, state: obj, cancellationToken: Threading.CancellationToken, creationOptions: TaskCreationOptions) : Task<'TResult>
val async: AsyncBuilder
@@ -483,17 +483,17 @@

W
val entity: obj
Multiple items
[<Struct>] type DateTime = - new: year: int * month: int * day: int -> unit + 16 overloads + new: year: int * month: int * day: int -> unit + 10 overloads member Add: value: TimeSpan -> DateTime member AddDays: value: float -> DateTime member AddHours: value: float -> DateTime - member AddMicroseconds: value: float -> DateTime member AddMilliseconds: value: float -> DateTime member AddMinutes: value: float -> DateTime member AddMonths: months: int -> DateTime member AddSeconds: value: float -> DateTime member AddTicks: value: int64 -> DateTime - ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
+ member AddYears: value: int -> DateTime + ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
property DateTime.UtcNow: DateTime with get
<summary>Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC).</summary>
<returns>An object whose value is the current UTC date and time.</returns>
val box: value: 'T -> obj
SqlDataProvider<...>.dataContext.SubmitUpdatesAsync() : Task
<summary>Save changes to data-source. May throws errors: Use Async.Catch and to deal with non-saved items use GetUpdates() and ClearUpdates().</summary>
diff --git a/core/crud.html b/core/crud.html index 03fb5310..de5ed299 100644 --- a/core/crud.html +++ b/core/crud.html @@ -535,17 +535,17 @@

val now: DateTime
Multiple items
[<Struct>] type DateTime = - new: year: int * month: int * day: int -> unit + 16 overloads + new: year: int * month: int * day: int -> unit + 10 overloads member Add: value: TimeSpan -> DateTime member AddDays: value: float -> DateTime member AddHours: value: float -> DateTime - member AddMicroseconds: value: float -> DateTime member AddMilliseconds: value: float -> DateTime member AddMinutes: value: float -> DateTime member AddMonths: months: int -> DateTime member AddSeconds: value: float -> DateTime member AddTicks: value: int64 -> DateTime - ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
+ member AddYears: value: int -> DateTime + ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
property DateTime.Now: DateTime with get
<summary>Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the local time.</summary>
<returns>An object whose value is the current local date and time.</returns>
val row: SqlDataProvider<...>.dataContext.main.OrdersEntity
val box: value: 'T -> obj
val bdate: DateTime
-
DateTime.Parse(s: string) : DateTime
DateTime.Parse(s: string, provider: IFormatProvider) : DateTime
DateTime.Parse(s: ReadOnlySpan<char>, provider: IFormatProvider) : DateTime
DateTime.Parse(s: string, provider: IFormatProvider, styles: Globalization.DateTimeStyles) : DateTime
DateTime.Parse(s: ReadOnlySpan<char>, ?provider: IFormatProvider, ?styles: Globalization.DateTimeStyles) : DateTime
+
DateTime.Parse(s: string) : DateTime
DateTime.Parse(s: string, provider: IFormatProvider) : DateTime
DateTime.Parse(s: string, provider: IFormatProvider, styles: Globalization.DateTimeStyles) : DateTime
DateTime.Parse(s: ReadOnlySpan<char>, ?provider: IFormatProvider, ?styles: Globalization.DateTimeStyles) : DateTime
DateTime.AddYears(value: int) : DateTime
property DateTime.UtcNow: DateTime with get
<summary>Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC).</summary>
<returns>An object whose value is the current UTC date and time.</returns>
val failwith: message: string -> 'T
diff --git a/core/mappers.html b/core/mappers.html index e7c9aed4..6d191a52 100644 --- a/core/mappers.html +++ b/core/mappers.html @@ -370,17 +370,17 @@

Multiple items
val string: value: 'T -> string

--------------------
type string = String
Multiple items
[<Struct>] type DateTime = - new: year: int * month: int * day: int -> unit + 16 overloads + new: year: int * month: int * day: int -> unit + 10 overloads member Add: value: TimeSpan -> DateTime member AddDays: value: float -> DateTime member AddHours: value: float -> DateTime - member AddMicroseconds: value: float -> DateTime member AddMilliseconds: value: float -> DateTime member AddMinutes: value: float -> DateTime member AddMonths: months: int -> DateTime member AddSeconds: value: float -> DateTime member AddTicks: value: int64 -> DateTime - ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
+ member AddYears: value: int -> DateTime + ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
val mapEmployee: dbRecord: SqlDataProvider<...>.dataContext.main.EmployeesEntity -> Employee
val dbRecord: SqlDataProvider<...>.dataContext.main.EmployeesEntity
Multiple items
[<Struct>] type Guid = - new: b: byte array -> unit + 6 overloads + new: b: byte array -> unit + 5 overloads member CompareTo: value: Guid -> int + 1 overload member Equals: g: Guid -> bool + 1 overload member GetHashCode: unit -> int - member ToByteArray: unit -> byte array + 1 overload + member ToByteArray: unit -> byte array member ToString: unit -> string + 2 overloads - member TryFormat: destination: Span<char> * charsWritten: byref<int> * ?format: ReadOnlySpan<char> -> bool + 1 overload - member TryWriteBytes: destination: Span<byte> -> bool + 1 overload - static member (<) : left: Guid * right: Guid -> bool - static member (<=) : left: Guid * right: Guid -> bool - ...
<summary>Represents a globally unique identifier (GUID).</summary>

--------------------
Guid ()
Guid(b: byte array) : Guid
Guid(b: ReadOnlySpan<byte>) : Guid
Guid(g: string) : Guid
Guid(b: ReadOnlySpan<byte>, bigEndian: bool) : Guid
Guid(a: int, b: int16, c: int16, d: byte array) : Guid
Guid(a: int, b: int16, c: int16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
Guid(a: uint32, b: uint16, c: uint16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
+ member TryFormat: destination: Span<char> * charsWritten: byref<int> * ?format: ReadOnlySpan<char> -> bool + member TryWriteBytes: destination: Span<byte> -> bool + static member (<>) : a: Guid * b: Guid -> bool + static member (=) : a: Guid * b: Guid -> bool + ...
<summary>Represents a globally unique identifier (GUID).</summary>

--------------------
Guid ()
Guid(b: byte array) : Guid
Guid(b: ReadOnlySpan<byte>) : Guid
Guid(g: string) : Guid
Guid(a: int, b: int16, c: int16, d: byte array) : Guid
Guid(a: int, b: int16, c: int16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
Guid(a: uint32, b: uint16, c: uint16, d: byte, e: byte, f: byte, g: byte, h: byte, i: byte, j: byte, k: byte) : Guid
Guid.NewGuid() : Guid
val myGuidAsString: string
Guid.ToString() : string
Guid.ToString(format: string) : string
Guid.ToString(format: string, provider: IFormatProvider) : string
Multiple items
[<Struct>] type DateTime = - new: year: int * month: int * day: int -> unit + 16 overloads + new: year: int * month: int * day: int -> unit + 10 overloads member Add: value: TimeSpan -> DateTime member AddDays: value: float -> DateTime member AddHours: value: float -> DateTime - member AddMicroseconds: value: float -> DateTime member AddMilliseconds: value: float -> DateTime member AddMinutes: value: float -> DateTime member AddMonths: months: int -> DateTime member AddSeconds: value: float -> DateTime member AddTicks: value: int64 -> DateTime - ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
+ member AddYears: value: int -> DateTime + ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
property DateTime.UtcNow: DateTime with get
<summary>Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC).</summary>
<returns>An object whose value is the current UTC date and time.</returns>
DateTime.ToString() : string
DateTime.ToString(format: string) : string
DateTime.ToString(provider: IFormatProvider) : string
DateTime.ToString(format: string, provider: IFormatProvider) : string
val box: value: 'T -> obj
diff --git a/core/odbc.html b/core/odbc.html index 065a5e67..6fd4150f 100644 --- a/core/odbc.html +++ b/core/odbc.html @@ -384,7 +384,6 @@

DTC Trans Timeout: TimeSpan IsolationLevel: IsolationLevel } - member Equals: TransactionOptions * IEqualityComparer -> bool static member Default: TransactionOptions
<summary> Corresponds to the System.Transactions.TransactionOptions. </summary> diff --git a/core/querying.html b/core/querying.html index 67754967..b64ac04f 100644 --- a/core/querying.html +++ b/core/querying.html @@ -1616,17 +1616,17 @@

val sdate: DateTime
Multiple items
[<Struct>] type DateTime = - new: year: int * month: int * day: int -> unit + 16 overloads + new: year: int * month: int * day: int -> unit + 10 overloads member Add: value: TimeSpan -> DateTime member AddDays: value: float -> DateTime member AddHours: value: float -> DateTime - member AddMicroseconds: value: float -> DateTime member AddMilliseconds: value: float -> DateTime member AddMinutes: value: float -> DateTime member AddMonths: months: int -> DateTime member AddSeconds: value: float -> DateTime member AddTicks: value: int64 -> DateTime - ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(date: DateOnly, time: TimeOnly, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
+ member AddYears: value: int -> DateTime + ...
<summary>Represents an instant in time, typically expressed as a date and time of day.</summary>

--------------------
DateTime ()
   (+0 other overloads)
DateTime(ticks: int64) : DateTime
   (+0 other overloads)
DateTime(ticks: int64, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, calendar: Globalization.Calendar) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int) : DateTime
   (+0 other overloads)
DateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, kind: DateTimeKind) : DateTime
   (+0 other overloads)
val customer: int
Multiple items
val int: value: 'T -> int (requires member op_Explicit)

--------------------
type int = int32

--------------------
type int<'Measure> = int
@@ -1777,13 +1777,11 @@

val r: Random
Multiple items
type Random = new: unit -> unit + 1 overload - member GetItems<'T> : choices: ReadOnlySpan<'T> * length: int -> 'T array + 2 overloads member Next: unit -> int + 2 overloads member NextBytes: buffer: byte array -> unit + 1 overload member NextDouble: unit -> float member NextInt64: unit -> int64 + 2 overloads member NextSingle: unit -> float32 - member Shuffle<'T> : values: Span<'T> -> unit + 1 overload static member Shared: Random
<summary>Represents a pseudo-random number generator, which is an algorithm that produces a sequence of numbers that meet certain statistical requirements for randomness.</summary>

--------------------
Random() : Random
Random(Seed: int) : Random
Random.NextDouble() : float
val c1: bool
diff --git a/core/techdetails.html b/core/techdetails.html index 1c92726d..0fb120e4 100644 --- a/core/techdetails.html +++ b/core/techdetails.html @@ -258,7 +258,7 @@

The environ

Solution structure

We use Fake and Paket. You have to run build.cmd on Windows (or sh ./build.sh on Mac/Linux) before opening the solutions.

The main source solution is SQLProvider.sln. -The unit tests are located in another one, SQLProvider.Tests.sln, and when you open the solution, it will lock the bin\net48\FSharp.Data.SqlProvider.dll, and after that you can't build the main solution.

+The unit tests are located in another one, SQLProvider.Tests.sln, and when you open the solution, it will lock the bin\net472\FSharp.Data.SqlProvider.dll, and after that you can't build the main solution.

@@ -1522,7 +1522,7 @@

data : - (string * 'a) seq + (string * 'f) seq
diff --git a/reference/fsharp-data-sql-common-sqlitelibrary.html b/reference/fsharp-data-sql-common-sqlitelibrary.html index 367db357..4348ed61 100644 --- a/reference/fsharp-data-sql-common-sqlitelibrary.html +++ b/reference/fsharp-data-sql-common-sqlitelibrary.html @@ -269,8 +269,6 @@

, IConvertible , - ISpanFormattable - , IFormattable
diff --git a/reference/fsharp-data-sql-common-table.html b/reference/fsharp-data-sql-common-table.html index 0768cc03..44a304b6 100644 --- a/reference/fsharp-data-sql-common-table.html +++ b/reference/fsharp-data-sql-common-table.html @@ -282,10 +282,6 @@

IConvertible , IEquatable<string> - , - ISpanParsable<string> - , - IParsable<string>

diff --git a/reference/fsharp-data-sql-providers-duckdb.html b/reference/fsharp-data-sql-providers-duckdb.html index f67798d4..d436ef58 100644 --- a/reference/fsharp-data-sql-providers-duckdb.html +++ b/reference/fsharp-data-sql-providers-duckdb.html @@ -1076,7 +1076,7 @@


Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]

@@ -1115,7 +1115,7 @@

Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]
diff --git a/reference/fsharp-data-sql-providers-firebird.html b/reference/fsharp-data-sql-providers-firebird.html index 6eed071b..c4ba6bef 100644 --- a/reference/fsharp-data-sql-providers-firebird.html +++ b/reference/fsharp-data-sql-providers-firebird.html @@ -1161,7 +1161,7 @@


Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]
@@ -1200,7 +1200,7 @@

Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]
diff --git a/reference/fsharp-data-sql-providers-mssqlserver.html b/reference/fsharp-data-sql-providers-mssqlserver.html index 9afaea4f..bf277d95 100644 --- a/reference/fsharp-data-sql-providers-mssqlserver.html +++ b/reference/fsharp-data-sql-providers-mssqlserver.html @@ -1164,7 +1164,7 @@


Returns: - (int * string * IDbDataParameter) array * (int * string * IDbDataParameter) array + (int * string * IDbDataParameter)[] * (int * string * IDbDataParameter)[]
@@ -1203,7 +1203,7 @@

Returns: - (int * string * IDbDataParameter) array * (int * string * IDbDataParameter) array + (int * string * IDbDataParameter)[] * (int * string * IDbDataParameter)[]
diff --git a/reference/fsharp-data-sql-providers-mssqlserverdynamic.html b/reference/fsharp-data-sql-providers-mssqlserverdynamic.html index 4a21d8b1..21c4ee1b 100644 --- a/reference/fsharp-data-sql-providers-mssqlserverdynamic.html +++ b/reference/fsharp-data-sql-providers-mssqlserverdynamic.html @@ -1298,7 +1298,7 @@


Returns: - (int * string * IDbDataParameter) array * (int * string * IDbDataParameter) array + (int * string * IDbDataParameter)[] * (int * string * IDbDataParameter)[]
@@ -1337,7 +1337,7 @@

Returns: - (int * string * IDbDataParameter) array * (int * string * IDbDataParameter) array + (int * string * IDbDataParameter)[] * (int * string * IDbDataParameter)[]
diff --git a/reference/fsharp-data-sql-providers-mysql.html b/reference/fsharp-data-sql-providers-mysql.html index b3917b88..c02af401 100644 --- a/reference/fsharp-data-sql-providers-mysql.html +++ b/reference/fsharp-data-sql-providers-mysql.html @@ -1115,7 +1115,7 @@


Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]
@@ -1154,7 +1154,7 @@

Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]
diff --git a/reference/fsharp-data-sql-providers-postgresql.html b/reference/fsharp-data-sql-providers-postgresql.html index 1b52e88d..0517f493 100644 --- a/reference/fsharp-data-sql-providers-postgresql.html +++ b/reference/fsharp-data-sql-providers-postgresql.html @@ -1162,7 +1162,7 @@


Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]
@@ -1201,7 +1201,7 @@

Returns: - (int * IDbDataParameter) array * (int * IDbDataParameter) array + (int * IDbDataParameter)[] * (int * IDbDataParameter)[]
diff --git a/reference/fsharp-data-sql-quotationhelpers.html b/reference/fsharp-data-sql-quotationhelpers.html index 009099f2..c187fa8b 100644 --- a/reference/fsharp-data-sql-quotationhelpers.html +++ b/reference/fsharp-data-sql-quotationhelpers.html @@ -377,7 +377,7 @@

fields : - obj array + obj[]
@@ -406,7 +406,7 @@

fields : - obj array + obj[]
diff --git a/reference/fsharp-data-sql-runtime-sqldatacontext.html b/reference/fsharp-data-sql-runtime-sqldatacontext.html index cfef1625..772b1a80 100644 --- a/reference/fsharp-data-sql-runtime-sqldatacontext.html +++ b/reference/fsharp-data-sql-runtime-sqldatacontext.html @@ -354,7 +354,7 @@

referencedAssemblies : - string array + string[]
@@ -495,7 +495,7 @@

referencedAssemblies : - string array + string[]
diff --git a/reference/fsharp-data-sql-schema-columnlookup.html b/reference/fsharp-data-sql-schema-columnlookup.html index 6afde6cb..c5e6720f 100644 --- a/reference/fsharp-data-sql-schema-columnlookup.html +++ b/reference/fsharp-data-sql-schema-columnlookup.html @@ -273,8 +273,6 @@

, IReadOnlyCollection<KeyValuePair<string, Column>> , - IStructuralEquatable - , IComparable , IDictionary<string, Column> diff --git a/reference/fsharp-data-sql-schema-sproc.html b/reference/fsharp-data-sql-schema-sproc.html index 168f6f21..6d6fe4f2 100644 --- a/reference/fsharp-data-sql-schema-sproc.html +++ b/reference/fsharp-data-sql-schema-sproc.html @@ -314,7 +314,7 @@

- +

@@ -539,7 +539,7 @@


Returns: - Type array + Type[]

@@ -552,7 +552,7 @@

Returns: - Type array + Type[]

diff --git a/reference/fsharp-data-sql-schema.html b/reference/fsharp-data-sql-schema.html index fac4593e..7b6d7d47 100644 --- a/reference/fsharp-data-sql-schema.html +++ b/reference/fsharp-data-sql-schema.html @@ -280,7 +280,7 @@

- +

@@ -307,7 +307,7 @@

- +

@@ -334,7 +334,7 @@

- +

@@ -361,7 +361,7 @@

- +

@@ -388,7 +388,7 @@

- +

@@ -415,7 +415,7 @@

- +

@@ -442,7 +442,7 @@

- +

@@ -469,7 +469,7 @@

- +

@@ -496,7 +496,7 @@

- +

@@ -523,7 +523,7 @@

- +

@@ -550,7 +550,7 @@

- +

diff --git a/reference/fsharp-data-sql-selectoperations.html b/reference/fsharp-data-sql-selectoperations.html index 390ab2c8..4c311770 100644 --- a/reference/fsharp-data-sql-selectoperations.html +++ b/reference/fsharp-data-sql-selectoperations.html @@ -269,8 +269,6 @@

, IConvertible , - ISpanFormattable - , IFormattable
diff --git a/reference/fsharp-data-sql-ssdt-dacpacparser-regexparsers.html b/reference/fsharp-data-sql-ssdt-dacpacparser-regexparsers.html index b9214f86..4752664f 100644 --- a/reference/fsharp-data-sql-ssdt-dacpacparser-regexparsers.html +++ b/reference/fsharp-data-sql-ssdt-dacpacparser-regexparsers.html @@ -455,7 +455,7 @@


Returns: - CommentAnnotation array + CommentAnnotation[]
@@ -495,7 +495,7 @@

Returns: - CommentAnnotation array + CommentAnnotation[]

@@ -534,7 +534,7 @@


Returns: - string array + string[]
@@ -575,7 +575,7 @@

Returns: - string array + string[]
diff --git a/reference/fsharp-data-sql-ssdt-dacpacparser-ssdtuserdefineddatatype.html b/reference/fsharp-data-sql-ssdt-dacpacparser-ssdtuserdefineddatatype.html index a9c70430..24c98afd 100644 --- a/reference/fsharp-data-sql-ssdt-dacpacparser-ssdtuserdefineddatatype.html +++ b/reference/fsharp-data-sql-ssdt-dacpacparser-ssdtuserdefineddatatype.html @@ -279,8 +279,6 @@

, IReadOnlyCollection<KeyValuePair<UDDTName, UDDTInheritedType>> , - IStructuralEquatable - , IComparable , IDictionary<UDDTName, UDDTInheritedType> diff --git a/reference/fsharp-data-sql-transactions-isolationlevel.html b/reference/fsharp-data-sql-transactions-isolationlevel.html index aa4e78fb..a726f7ae 100644 --- a/reference/fsharp-data-sql-transactions-isolationlevel.html +++ b/reference/fsharp-data-sql-transactions-isolationlevel.html @@ -269,8 +269,6 @@

, IConvertible , - ISpanFormattable - , IFormattable