From 8ccd52aefffc37be9db8c5b2b1c0804b079fce55 Mon Sep 17 00:00:00 2001 From: Tuomas Hietanen Date: Wed, 9 Oct 2024 14:16:57 +0100 Subject: [PATCH] Update generated documentation for version 1.4.1 --- 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, 114 insertions(+), 82 deletions(-) diff --git a/core/async.html b/core/async.html index 8f6ed30d..8ce17265 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 + 5 overloads + new: b: byte array -> unit + 6 overloads member CompareTo: value: Guid -> int + 1 overload member Equals: g: Guid -> bool + 1 overload member GetHashCode: unit -> int - member ToByteArray: unit -> byte array + member ToByteArray: unit -> byte array + 1 overload member ToString: unit -> string + 2 overloads - 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
+ 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
Multiple items
type Task = interface IAsyncResult interface IDisposable new: action: Action -> unit + 7 overloads - member ConfigureAwait: continueOnCapturedContext: bool -> ConfiguredTaskAwaitable + member ConfigureAwait: continueOnCapturedContext: bool -> ConfiguredTaskAwaitable + 1 overload 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 + 4 overloads + member Wait: unit -> unit + 5 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> + member ConfigureAwait: continueOnCapturedContext: bool -> ConfiguredTaskAwaitable<'TResult> + 1 overload member ContinueWith: continuationAction: Action<Task<'TResult>,obj> * state: obj -> Task + 19 overloads member GetAwaiter: unit -> TaskAwaiter<'TResult> - member WaitAsync: timeout: TimeSpan -> Task<'TResult> + 2 overloads + member WaitAsync: cancellationToken: CancellationToken -> Task<'TResult> + 4 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 + 10 overloads + new: year: int * month: int * day: int -> unit + 16 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 - 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)
+ ...
<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)
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 de5ed299..03fb5310 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 + 10 overloads + new: year: int * month: int * day: int -> unit + 16 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 - 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)
+ ...
<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)
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: 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: 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.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 6d191a52..e7c9aed4 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 + 10 overloads + new: year: int * month: int * day: int -> unit + 16 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 - 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)
+ ...
<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)
val mapEmployee: dbRecord: SqlDataProvider<...>.dataContext.main.EmployeesEntity -> Employee
val dbRecord: SqlDataProvider<...>.dataContext.main.EmployeesEntity
Multiple items
[<Struct>] type Guid = - new: b: byte array -> unit + 5 overloads + new: b: byte array -> unit + 6 overloads member CompareTo: value: Guid -> int + 1 overload member Equals: g: Guid -> bool + 1 overload member GetHashCode: unit -> int - member ToByteArray: unit -> byte array + member ToByteArray: unit -> byte array + 1 overload member ToString: unit -> string + 2 overloads - 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
+ 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
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 + 10 overloads + new: year: int * month: int * day: int -> unit + 16 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 - 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)
+ ...
<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)
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 6fd4150f..065a5e67 100644 --- a/core/odbc.html +++ b/core/odbc.html @@ -384,6 +384,7 @@

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 b64ac04f..67754967 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 + 10 overloads + new: year: int * month: int * day: int -> unit + 16 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 - 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)
+ ...
<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)
val customer: int
Multiple items
val int: value: 'T -> int (requires member op_Explicit)

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

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

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 0fb120e4..1c92726d 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\net472\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\net48\FSharp.Data.SqlProvider.dll, and after that you can't build the main solution.

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

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

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

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 d436ef58..f67798d4 100644 --- a/reference/fsharp-data-sql-providers-duckdb.html +++ b/reference/fsharp-data-sql-providers-duckdb.html @@ -1076,7 +1076,7 @@


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

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

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


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

Returns: - (int * IDbDataParameter)[] * (int * IDbDataParameter)[] + (int * IDbDataParameter) array * (int * IDbDataParameter) array
diff --git a/reference/fsharp-data-sql-providers-mssqlserver.html b/reference/fsharp-data-sql-providers-mssqlserver.html index bf277d95..9afaea4f 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)[] * (int * string * IDbDataParameter)[] + (int * string * IDbDataParameter) array * (int * string * IDbDataParameter) array
@@ -1203,7 +1203,7 @@

Returns: - (int * string * IDbDataParameter)[] * (int * string * IDbDataParameter)[] + (int * string * IDbDataParameter) array * (int * string * IDbDataParameter) array
diff --git a/reference/fsharp-data-sql-providers-mssqlserverdynamic.html b/reference/fsharp-data-sql-providers-mssqlserverdynamic.html index 21c4ee1b..4a21d8b1 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)[] * (int * string * IDbDataParameter)[] + (int * string * IDbDataParameter) array * (int * string * IDbDataParameter) array
@@ -1337,7 +1337,7 @@

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


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

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


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

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

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

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

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

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

, 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 6d6fe4f2..168f6f21 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[] + Type array

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

Returns: - Type[] + Type array

diff --git a/reference/fsharp-data-sql-schema.html b/reference/fsharp-data-sql-schema.html index 7b6d7d47..fac4593e 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 4c311770..390ab2c8 100644 --- a/reference/fsharp-data-sql-selectoperations.html +++ b/reference/fsharp-data-sql-selectoperations.html @@ -269,6 +269,8 @@

, IConvertible , + ISpanFormattable + , IFormattable
diff --git a/reference/fsharp-data-sql-ssdt-dacpacparser-regexparsers.html b/reference/fsharp-data-sql-ssdt-dacpacparser-regexparsers.html index 4752664f..b9214f86 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[] + CommentAnnotation array
@@ -495,7 +495,7 @@

Returns: - CommentAnnotation[] + CommentAnnotation array

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


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

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

, 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 a726f7ae..aa4e78fb 100644 --- a/reference/fsharp-data-sql-transactions-isolationlevel.html +++ b/reference/fsharp-data-sql-transactions-isolationlevel.html @@ -269,6 +269,8 @@

, IConvertible , + ISpanFormattable + , IFormattable