@tsonic/efcore-sqlite 10.0.3 → 10.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.Data.Sqlite/internal/index.d.ts +167 -109
- package/Microsoft.DotNet.PlatformAbstractions/internal/index.d.ts +6 -4
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +54 -54
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +9 -7
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +45 -13
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +21 -11
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/internal/index.d.ts +11 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +23 -15
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/internal/index.d.ts +42 -42
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +18 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +182 -38
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +18 -10
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +73 -26
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +22 -12
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +26 -6
- package/Microsoft.EntityFrameworkCore.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +91 -54
- package/Microsoft.Extensions.DependencyModel.Resolution/internal/index.d.ts +32 -20
- package/SQLitePCL/internal/index.d.ts +115 -43
- package/SQLitePCL.d.ts +3 -0
- package/System.Collections.Generic/internal/index.d.ts +9 -9
- package/System.Collections.Generic.d.ts +3 -0
- package/__internal/extensions/index.d.ts +342 -16
- package/package.json +5 -5
|
@@ -10,23 +10,23 @@ import type { ptr } from "@tsonic/core/types.js";
|
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
12
|
import type { sqlite3, sqlite3_stmt } from "../../SQLitePCL/internal/index.js";
|
|
13
|
-
import type {
|
|
14
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
15
|
-
import type { ICollection, IDictionary, IEnumerable, IEnumerator, IList } from "@tsonic/dotnet/System.Collections.js";
|
|
16
|
-
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel.js";
|
|
17
|
-
import type { IComponent, ICustomTypeDescriptor } from "@tsonic/dotnet/System.ComponentModel.js";
|
|
18
|
-
import * as System_Data_Common_Internal from "@tsonic/dotnet/System.Data.Common.js";
|
|
19
|
-
import type { DbCommand, DbConnection, DbConnectionStringBuilder, DbDataReader, DbException, DbParameter, DbParameterCollection, DbProviderFactory, DbTransaction } from "@tsonic/dotnet/System.Data.Common.js";
|
|
20
|
-
import * as System_Data_Internal from "@tsonic/dotnet/System.Data.js";
|
|
21
|
-
import type { CommandBehavior, CommandType, ConnectionState, DataTable, DbType, IDataParameter, IDataParameterCollection, IDataReader, IDataRecord, IDbCommand, IDbConnection, IDbDataParameter, IDbTransaction, IsolationLevel, ParameterDirection, UpdateRowSource } from "@tsonic/dotnet/System.Data.js";
|
|
22
|
-
import * as System_IO_Internal from "@tsonic/dotnet/System.IO.js";
|
|
23
|
-
import type { SeekOrigin, Stream, TextReader } from "@tsonic/dotnet/System.IO.js";
|
|
24
|
-
import * as
|
|
25
|
-
import type {
|
|
26
|
-
import
|
|
27
|
-
import type {
|
|
28
|
-
import
|
|
29
|
-
import type {
|
|
13
|
+
import type { IEnumerable_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
15
|
+
import type { ICollection, IDictionary, IEnumerable, IEnumerator, IList } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
16
|
+
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
17
|
+
import type { IComponent, ICustomTypeDescriptor } from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
18
|
+
import * as System_Data_Common_Internal from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
19
|
+
import type { DbCommand, DbConnection, DbConnectionStringBuilder, DbDataReader, DbException, DbParameter, DbParameterCollection, DbProviderFactory, DbTransaction } from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
20
|
+
import * as System_Data_Internal from "@tsonic/dotnet/System.Data/internal/index.js";
|
|
21
|
+
import type { CommandBehavior, CommandType, ConnectionState, DataTable, DbType, IDataParameter, IDataParameterCollection, IDataReader, IDataRecord, IDbCommand, IDbConnection, IDbDataParameter, IDbTransaction, IsolationLevel, ParameterDirection, UpdateRowSource } from "@tsonic/dotnet/System.Data/internal/index.js";
|
|
22
|
+
import * as System_IO_Internal from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
23
|
+
import type { SeekOrigin, Stream, TextReader } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
24
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
25
|
+
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
26
|
+
import type { Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
27
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
28
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
29
|
+
import type { Array as ClrArray, Boolean as ClrBoolean, Byte, Char, Comparison_1, DateTime, DateTimeOffset, Decimal, Double, Enum, Func_1, Func_10, Func_11, Func_12, Func_13, Func_14, Func_15, Func_16, Func_17, Func_2, Func_3, Func_4, Func_5, Func_6, Func_7, Func_8, Func_9, Guid, IAsyncDisposable, IComparable, IConvertible, IDisposable, IFormattable, Int16, Int32, Int64, ISpanFormattable, Nullable_1, Object as ClrObject, ReadOnlySpan_1, Single, Span_1, String as ClrString, TimeSpan, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
30
30
|
|
|
31
31
|
export enum SqliteCacheMode {
|
|
32
32
|
Default = 0,
|
|
@@ -52,6 +52,11 @@ export enum SqliteType {
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
export interface SqliteBlob$instance extends Stream {
|
|
55
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteBlob: never;
|
|
56
|
+
|
|
57
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
58
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
59
|
+
|
|
55
60
|
readonly CanRead: boolean;
|
|
56
61
|
readonly CanSeek: boolean;
|
|
57
62
|
readonly CanWrite: boolean;
|
|
@@ -60,11 +65,11 @@ export interface SqliteBlob$instance extends Stream {
|
|
|
60
65
|
Dispose(disposing: boolean): void;
|
|
61
66
|
Flush(): void;
|
|
62
67
|
Read(buffer: byte[], offset: int, count: int): int;
|
|
63
|
-
Read(buffer:
|
|
68
|
+
Read(buffer: Span_1<System_Internal.Byte>): int;
|
|
64
69
|
Seek(offset: long, origin: SeekOrigin): long;
|
|
65
70
|
SetLength(value: long): void;
|
|
66
71
|
Write(buffer: byte[], offset: int, count: int): void;
|
|
67
|
-
Write(buffer:
|
|
72
|
+
Write(buffer: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
68
73
|
}
|
|
69
74
|
|
|
70
75
|
|
|
@@ -77,6 +82,13 @@ export const SqliteBlob: {
|
|
|
77
82
|
export type SqliteBlob = SqliteBlob$instance;
|
|
78
83
|
|
|
79
84
|
export interface SqliteCommand$instance extends DbCommand {
|
|
85
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteCommand: never;
|
|
86
|
+
|
|
87
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
88
|
+
readonly __tsonic_iface_System_Data_IDbCommand: never;
|
|
89
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
90
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
91
|
+
|
|
80
92
|
CommandText: string;
|
|
81
93
|
CommandTimeout: int;
|
|
82
94
|
CommandType: CommandType;
|
|
@@ -99,14 +111,14 @@ export interface SqliteCommand$instance extends DbCommand {
|
|
|
99
111
|
CreateParameter(): SqliteParameter;
|
|
100
112
|
Dispose(disposing: boolean): void;
|
|
101
113
|
ExecuteDbDataReader(behavior: CommandBehavior): DbDataReader;
|
|
102
|
-
ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken):
|
|
114
|
+
ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task_1<DbDataReader>;
|
|
103
115
|
ExecuteNonQuery(): int;
|
|
104
116
|
ExecuteReader(): SqliteDataReader;
|
|
105
117
|
ExecuteReader(behavior: CommandBehavior): SqliteDataReader;
|
|
106
|
-
ExecuteReaderAsync():
|
|
107
|
-
ExecuteReaderAsync(cancellationToken: CancellationToken):
|
|
108
|
-
ExecuteReaderAsync(behavior: CommandBehavior):
|
|
109
|
-
ExecuteReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken):
|
|
118
|
+
ExecuteReaderAsync(): Task_1<SqliteDataReader>;
|
|
119
|
+
ExecuteReaderAsync(cancellationToken: CancellationToken): Task_1<SqliteDataReader>;
|
|
120
|
+
ExecuteReaderAsync(behavior: CommandBehavior): Task_1<SqliteDataReader>;
|
|
121
|
+
ExecuteReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task_1<SqliteDataReader>;
|
|
110
122
|
ExecuteScalar(): unknown | undefined;
|
|
111
123
|
Prepare(): void;
|
|
112
124
|
}
|
|
@@ -123,6 +135,13 @@ export const SqliteCommand: {
|
|
|
123
135
|
export type SqliteCommand = SqliteCommand$instance;
|
|
124
136
|
|
|
125
137
|
export interface SqliteConnection$instance extends DbConnection {
|
|
138
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteConnection: never;
|
|
139
|
+
|
|
140
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
141
|
+
readonly __tsonic_iface_System_Data_IDbConnection: never;
|
|
142
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
143
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
144
|
+
|
|
126
145
|
ConnectionString: string;
|
|
127
146
|
readonly Database: string;
|
|
128
147
|
readonly DataSource: string;
|
|
@@ -142,91 +161,91 @@ export interface SqliteConnection$instance extends DbConnection {
|
|
|
142
161
|
BeginTransaction(isolationLevel: IsolationLevel, deferred: boolean): SqliteTransaction;
|
|
143
162
|
ChangeDatabase(databaseName: string): void;
|
|
144
163
|
Close(): void;
|
|
145
|
-
CreateAggregate<TAccumulate>(name: string, func:
|
|
146
|
-
CreateAggregate<T1, TAccumulate>(name: string, func:
|
|
147
|
-
CreateAggregate<T1, T2, TAccumulate>(name: string, func:
|
|
148
|
-
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, func:
|
|
149
|
-
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, func:
|
|
150
|
-
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, func:
|
|
151
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, func:
|
|
152
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, func:
|
|
153
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, func:
|
|
154
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, func:
|
|
155
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, func:
|
|
156
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, func:
|
|
157
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, func:
|
|
158
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, func:
|
|
159
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, func:
|
|
160
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, func:
|
|
161
|
-
CreateAggregate<TAccumulate>(name: string, seed: TAccumulate, func:
|
|
162
|
-
CreateAggregate<T1, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
163
|
-
CreateAggregate<T1, T2, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
164
|
-
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
165
|
-
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
166
|
-
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
167
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
168
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
169
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
170
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
171
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
172
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
173
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
174
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
175
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
176
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
177
|
-
CreateAggregate<TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
178
|
-
CreateAggregate<T1, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
179
|
-
CreateAggregate<T1, T2, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
180
|
-
CreateAggregate<T1, T2, T3, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
181
|
-
CreateAggregate<T1, T2, T3, T4, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
182
|
-
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
183
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
184
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
185
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
186
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
187
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
188
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
189
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
190
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
191
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
192
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
193
|
-
CreateCollation(name: string, comparison:
|
|
194
|
-
CreateCollation<T>(name: string, state: T, comparison:
|
|
164
|
+
CreateAggregate<TAccumulate>(name: string, func: Func_2<TAccumulate, TAccumulate>, isDeterministic?: boolean): void;
|
|
165
|
+
CreateAggregate<T1, TAccumulate>(name: string, func: Func_3<TAccumulate, T1, TAccumulate>, isDeterministic?: boolean): void;
|
|
166
|
+
CreateAggregate<T1, T2, TAccumulate>(name: string, func: Func_4<TAccumulate, T1, T2, TAccumulate>, isDeterministic?: boolean): void;
|
|
167
|
+
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, func: Func_5<TAccumulate, T1, T2, T3, TAccumulate>, isDeterministic?: boolean): void;
|
|
168
|
+
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, func: Func_6<TAccumulate, T1, T2, T3, T4, TAccumulate>, isDeterministic?: boolean): void;
|
|
169
|
+
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, func: Func_7<TAccumulate, T1, T2, T3, T4, T5, TAccumulate>, isDeterministic?: boolean): void;
|
|
170
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, func: Func_8<TAccumulate, T1, T2, T3, T4, T5, T6, TAccumulate>, isDeterministic?: boolean): void;
|
|
171
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, func: Func_9<TAccumulate, T1, T2, T3, T4, T5, T6, T7, TAccumulate>, isDeterministic?: boolean): void;
|
|
172
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, func: Func_10<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>, isDeterministic?: boolean): void;
|
|
173
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, func: Func_11<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>, isDeterministic?: boolean): void;
|
|
174
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, func: Func_12<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>, isDeterministic?: boolean): void;
|
|
175
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, func: Func_13<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>, isDeterministic?: boolean): void;
|
|
176
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, func: Func_14<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>, isDeterministic?: boolean): void;
|
|
177
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, func: Func_15<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>, isDeterministic?: boolean): void;
|
|
178
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, func: Func_16<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>, isDeterministic?: boolean): void;
|
|
179
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, func: Func_17<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>, isDeterministic?: boolean): void;
|
|
180
|
+
CreateAggregate<TAccumulate>(name: string, seed: TAccumulate, func: Func_2<TAccumulate, TAccumulate>, isDeterministic?: boolean): void;
|
|
181
|
+
CreateAggregate<T1, TAccumulate>(name: string, seed: TAccumulate, func: Func_3<TAccumulate, T1, TAccumulate>, isDeterministic?: boolean): void;
|
|
182
|
+
CreateAggregate<T1, T2, TAccumulate>(name: string, seed: TAccumulate, func: Func_4<TAccumulate, T1, T2, TAccumulate>, isDeterministic?: boolean): void;
|
|
183
|
+
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, seed: TAccumulate, func: Func_5<TAccumulate, T1, T2, T3, TAccumulate>, isDeterministic?: boolean): void;
|
|
184
|
+
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, seed: TAccumulate, func: Func_6<TAccumulate, T1, T2, T3, T4, TAccumulate>, isDeterministic?: boolean): void;
|
|
185
|
+
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, seed: TAccumulate, func: Func_7<TAccumulate, T1, T2, T3, T4, T5, TAccumulate>, isDeterministic?: boolean): void;
|
|
186
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, seed: TAccumulate, func: Func_8<TAccumulate, T1, T2, T3, T4, T5, T6, TAccumulate>, isDeterministic?: boolean): void;
|
|
187
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, seed: TAccumulate, func: Func_9<TAccumulate, T1, T2, T3, T4, T5, T6, T7, TAccumulate>, isDeterministic?: boolean): void;
|
|
188
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, seed: TAccumulate, func: Func_10<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>, isDeterministic?: boolean): void;
|
|
189
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, seed: TAccumulate, func: Func_11<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>, isDeterministic?: boolean): void;
|
|
190
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, seed: TAccumulate, func: Func_12<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>, isDeterministic?: boolean): void;
|
|
191
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, seed: TAccumulate, func: Func_13<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>, isDeterministic?: boolean): void;
|
|
192
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, seed: TAccumulate, func: Func_14<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>, isDeterministic?: boolean): void;
|
|
193
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, seed: TAccumulate, func: Func_15<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>, isDeterministic?: boolean): void;
|
|
194
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, seed: TAccumulate, func: Func_16<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>, isDeterministic?: boolean): void;
|
|
195
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, seed: TAccumulate, func: Func_17<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>, isDeterministic?: boolean): void;
|
|
196
|
+
CreateAggregate<TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_2<TAccumulate, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
197
|
+
CreateAggregate<T1, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_3<TAccumulate, T1, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
198
|
+
CreateAggregate<T1, T2, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_4<TAccumulate, T1, T2, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
199
|
+
CreateAggregate<T1, T2, T3, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_5<TAccumulate, T1, T2, T3, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
200
|
+
CreateAggregate<T1, T2, T3, T4, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_6<TAccumulate, T1, T2, T3, T4, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
201
|
+
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_7<TAccumulate, T1, T2, T3, T4, T5, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
202
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_8<TAccumulate, T1, T2, T3, T4, T5, T6, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
203
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_9<TAccumulate, T1, T2, T3, T4, T5, T6, T7, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
204
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_10<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
205
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_11<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
206
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_12<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
207
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_13<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
208
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_14<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
209
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_15<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
210
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_16<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
211
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_17<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
212
|
+
CreateCollation(name: string, comparison: Comparison_1<System_Internal.String>): void;
|
|
213
|
+
CreateCollation<T>(name: string, state: T, comparison: Func_4<T, System_Internal.String, System_Internal.String, System_Internal.Int32>): void;
|
|
195
214
|
CreateCommand(): SqliteCommand;
|
|
196
215
|
CreateDbCommand(): DbCommand;
|
|
197
|
-
CreateFunction<TResult>(name: string, function_:
|
|
198
|
-
CreateFunction<T1, TResult>(name: string, function_:
|
|
199
|
-
CreateFunction<T1, T2, TResult>(name: string, function_:
|
|
200
|
-
CreateFunction<T1, T2, T3, TResult>(name: string, function_:
|
|
201
|
-
CreateFunction<T1, T2, T3, T4, TResult>(name: string, function_:
|
|
202
|
-
CreateFunction<T1, T2, T3, T4, T5, TResult>(name: string, function_:
|
|
203
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, TResult>(name: string, function_:
|
|
204
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, function_:
|
|
205
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, function_:
|
|
206
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, function_:
|
|
207
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, function_:
|
|
208
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, function_:
|
|
209
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, function_:
|
|
210
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, function_:
|
|
211
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, function_:
|
|
212
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, function_:
|
|
213
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(name: string, function_:
|
|
214
|
-
CreateFunction<TState, TResult>(name: string, state: TState, function_:
|
|
215
|
-
CreateFunction<TState, T1, TResult>(name: string, state: TState, function_:
|
|
216
|
-
CreateFunction<TState, T1, T2, TResult>(name: string, state: TState, function_:
|
|
217
|
-
CreateFunction<TState, T1, T2, T3, TResult>(name: string, state: TState, function_:
|
|
218
|
-
CreateFunction<TState, T1, T2, T3, T4, TResult>(name: string, state: TState, function_:
|
|
219
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, TResult>(name: string, state: TState, function_:
|
|
220
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, TResult>(name: string, state: TState, function_:
|
|
221
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, state: TState, function_:
|
|
222
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, state: TState, function_:
|
|
223
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, state: TState, function_:
|
|
224
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, state: TState, function_:
|
|
225
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, state: TState, function_:
|
|
226
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, state: TState, function_:
|
|
227
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, state: TState, function_:
|
|
228
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, state: TState, function_:
|
|
229
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, state: TState, function_:
|
|
216
|
+
CreateFunction<TResult>(name: string, function_: Func_1<TResult>, isDeterministic?: boolean): void;
|
|
217
|
+
CreateFunction<T1, TResult>(name: string, function_: Func_2<T1, TResult>, isDeterministic?: boolean): void;
|
|
218
|
+
CreateFunction<T1, T2, TResult>(name: string, function_: Func_3<T1, T2, TResult>, isDeterministic?: boolean): void;
|
|
219
|
+
CreateFunction<T1, T2, T3, TResult>(name: string, function_: Func_4<T1, T2, T3, TResult>, isDeterministic?: boolean): void;
|
|
220
|
+
CreateFunction<T1, T2, T3, T4, TResult>(name: string, function_: Func_5<T1, T2, T3, T4, TResult>, isDeterministic?: boolean): void;
|
|
221
|
+
CreateFunction<T1, T2, T3, T4, T5, TResult>(name: string, function_: Func_6<T1, T2, T3, T4, T5, TResult>, isDeterministic?: boolean): void;
|
|
222
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, TResult>(name: string, function_: Func_7<T1, T2, T3, T4, T5, T6, TResult>, isDeterministic?: boolean): void;
|
|
223
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, function_: Func_8<T1, T2, T3, T4, T5, T6, T7, TResult>, isDeterministic?: boolean): void;
|
|
224
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, function_: Func_9<T1, T2, T3, T4, T5, T6, T7, T8, TResult>, isDeterministic?: boolean): void;
|
|
225
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, function_: Func_10<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>, isDeterministic?: boolean): void;
|
|
226
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, function_: Func_11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>, isDeterministic?: boolean): void;
|
|
227
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, function_: Func_12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>, isDeterministic?: boolean): void;
|
|
228
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, function_: Func_13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>, isDeterministic?: boolean): void;
|
|
229
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, function_: Func_14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>, isDeterministic?: boolean): void;
|
|
230
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, function_: Func_15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>, isDeterministic?: boolean): void;
|
|
231
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, function_: Func_16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>, isDeterministic?: boolean): void;
|
|
232
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(name: string, function_: Func_17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>, isDeterministic?: boolean): void;
|
|
233
|
+
CreateFunction<TState, TResult>(name: string, state: TState, function_: Func_2<TState, TResult>, isDeterministic?: boolean): void;
|
|
234
|
+
CreateFunction<TState, T1, TResult>(name: string, state: TState, function_: Func_3<TState, T1, TResult>, isDeterministic?: boolean): void;
|
|
235
|
+
CreateFunction<TState, T1, T2, TResult>(name: string, state: TState, function_: Func_4<TState, T1, T2, TResult>, isDeterministic?: boolean): void;
|
|
236
|
+
CreateFunction<TState, T1, T2, T3, TResult>(name: string, state: TState, function_: Func_5<TState, T1, T2, T3, TResult>, isDeterministic?: boolean): void;
|
|
237
|
+
CreateFunction<TState, T1, T2, T3, T4, TResult>(name: string, state: TState, function_: Func_6<TState, T1, T2, T3, T4, TResult>, isDeterministic?: boolean): void;
|
|
238
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, TResult>(name: string, state: TState, function_: Func_7<TState, T1, T2, T3, T4, T5, TResult>, isDeterministic?: boolean): void;
|
|
239
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, TResult>(name: string, state: TState, function_: Func_8<TState, T1, T2, T3, T4, T5, T6, TResult>, isDeterministic?: boolean): void;
|
|
240
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, state: TState, function_: Func_9<TState, T1, T2, T3, T4, T5, T6, T7, TResult>, isDeterministic?: boolean): void;
|
|
241
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, state: TState, function_: Func_10<TState, T1, T2, T3, T4, T5, T6, T7, T8, TResult>, isDeterministic?: boolean): void;
|
|
242
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, state: TState, function_: Func_11<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>, isDeterministic?: boolean): void;
|
|
243
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, state: TState, function_: Func_12<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>, isDeterministic?: boolean): void;
|
|
244
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, state: TState, function_: Func_13<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>, isDeterministic?: boolean): void;
|
|
245
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, state: TState, function_: Func_14<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>, isDeterministic?: boolean): void;
|
|
246
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, state: TState, function_: Func_15<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>, isDeterministic?: boolean): void;
|
|
247
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, state: TState, function_: Func_16<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>, isDeterministic?: boolean): void;
|
|
248
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, state: TState, function_: Func_17<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>, isDeterministic?: boolean): void;
|
|
230
249
|
Dispose(disposing: boolean): void;
|
|
231
250
|
EnableExtensions(enable?: boolean): void;
|
|
232
251
|
GetSchema(): DataTable;
|
|
@@ -248,10 +267,17 @@ export const SqliteConnection: {
|
|
|
248
267
|
export type SqliteConnection = SqliteConnection$instance;
|
|
249
268
|
|
|
250
269
|
export interface SqliteConnectionStringBuilder$instance extends DbConnectionStringBuilder {
|
|
270
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteConnectionStringBuilder: never;
|
|
271
|
+
|
|
272
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
273
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
274
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
275
|
+
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
276
|
+
|
|
251
277
|
Cache: SqliteCacheMode;
|
|
252
278
|
DataSource: string;
|
|
253
279
|
DefaultTimeout: int;
|
|
254
|
-
ForeignKeys:
|
|
280
|
+
ForeignKeys: Nullable_1<System_Internal.Boolean>;
|
|
255
281
|
[keyword: string]: unknown | undefined;
|
|
256
282
|
readonly Keys: ICollection;
|
|
257
283
|
Mode: SqliteOpenMode;
|
|
@@ -278,6 +304,14 @@ export const SqliteConnectionStringBuilder: {
|
|
|
278
304
|
export type SqliteConnectionStringBuilder = SqliteConnectionStringBuilder$instance;
|
|
279
305
|
|
|
280
306
|
export interface SqliteDataReader$instance extends DbDataReader {
|
|
307
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteDataReader: never;
|
|
308
|
+
|
|
309
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
310
|
+
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
311
|
+
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
312
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
313
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
314
|
+
|
|
281
315
|
readonly Depth: int;
|
|
282
316
|
readonly FieldCount: int;
|
|
283
317
|
readonly Handle: sqlite3_stmt | undefined;
|
|
@@ -328,6 +362,10 @@ export const SqliteDataReader: {
|
|
|
328
362
|
export type SqliteDataReader = SqliteDataReader$instance;
|
|
329
363
|
|
|
330
364
|
export interface SqliteException$instance extends DbException {
|
|
365
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteException: never;
|
|
366
|
+
|
|
367
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
368
|
+
|
|
331
369
|
readonly SqliteErrorCode: int;
|
|
332
370
|
readonly SqliteExtendedErrorCode: int;
|
|
333
371
|
}
|
|
@@ -343,6 +381,8 @@ export const SqliteException: {
|
|
|
343
381
|
export type SqliteException = SqliteException$instance;
|
|
344
382
|
|
|
345
383
|
export interface SqliteFactory$instance extends DbProviderFactory {
|
|
384
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteFactory: never;
|
|
385
|
+
|
|
346
386
|
CreateCommand(): DbCommand;
|
|
347
387
|
CreateConnection(): DbConnection;
|
|
348
388
|
CreateConnectionStringBuilder(): DbConnectionStringBuilder;
|
|
@@ -358,6 +398,11 @@ export const SqliteFactory: {
|
|
|
358
398
|
export type SqliteFactory = SqliteFactory$instance;
|
|
359
399
|
|
|
360
400
|
export interface SqliteParameter$instance extends DbParameter {
|
|
401
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteParameter: never;
|
|
402
|
+
|
|
403
|
+
readonly __tsonic_iface_System_Data_IDataParameter: never;
|
|
404
|
+
readonly __tsonic_iface_System_Data_IDbDataParameter: never;
|
|
405
|
+
|
|
361
406
|
DbType: DbType;
|
|
362
407
|
Direction: ParameterDirection;
|
|
363
408
|
IsNullable: boolean;
|
|
@@ -385,6 +430,13 @@ export const SqliteParameter: {
|
|
|
385
430
|
export type SqliteParameter = SqliteParameter$instance;
|
|
386
431
|
|
|
387
432
|
export interface SqliteParameterCollection$instance extends DbParameterCollection {
|
|
433
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteParameterCollection: never;
|
|
434
|
+
|
|
435
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
436
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
437
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
438
|
+
readonly __tsonic_iface_System_Data_IDataParameterCollection: never;
|
|
439
|
+
|
|
388
440
|
readonly Count: int;
|
|
389
441
|
readonly SyncRoot: unknown;
|
|
390
442
|
Add(value: unknown): int;
|
|
@@ -393,7 +445,7 @@ export interface SqliteParameterCollection$instance extends DbParameterCollectio
|
|
|
393
445
|
Add(parameterName: string, type: SqliteType, size: int): SqliteParameter;
|
|
394
446
|
Add(parameterName: string, type: SqliteType, size: int, sourceColumn: string): SqliteParameter;
|
|
395
447
|
AddRange(values: ClrArray): void;
|
|
396
|
-
AddRange(values:
|
|
448
|
+
AddRange(values: IEnumerable_1<SqliteParameter>): void;
|
|
397
449
|
AddWithValue(parameterName: string, value: unknown): SqliteParameter;
|
|
398
450
|
Clear(): void;
|
|
399
451
|
Contains(value: unknown): boolean;
|
|
@@ -429,6 +481,12 @@ export const SqliteParameterCollection: (abstract new() => SqliteParameterCollec
|
|
|
429
481
|
export type SqliteParameterCollection = SqliteParameterCollection$instance;
|
|
430
482
|
|
|
431
483
|
export interface SqliteTransaction$instance extends DbTransaction {
|
|
484
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteTransaction: never;
|
|
485
|
+
|
|
486
|
+
readonly __tsonic_iface_System_Data_IDbTransaction: never;
|
|
487
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
488
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
489
|
+
|
|
432
490
|
readonly Connection: SqliteConnection | undefined;
|
|
433
491
|
readonly DbConnection: DbConnection | undefined;
|
|
434
492
|
readonly IsolationLevel: IsolationLevel;
|
|
@@ -6,16 +6,18 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import type {
|
|
10
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
11
|
-
import type { Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System.js";
|
|
9
|
+
import type { IEqualityComparer_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
10
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
11
|
+
import type { Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export interface HashCodeCombiner$instance {
|
|
14
|
+
readonly __tsonic_type_Microsoft_DotNet_PlatformAbstractions_HashCodeCombiner: never;
|
|
15
|
+
|
|
14
16
|
readonly CombinedHash: int;
|
|
15
17
|
Add(i: int): void;
|
|
16
18
|
Add(s: string): void;
|
|
17
19
|
Add(o: unknown): void;
|
|
18
|
-
Add<TValue>(value: TValue, comparer:
|
|
20
|
+
Add<TValue>(value: TValue, comparer: IEqualityComparer_1<TValue>): void;
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
|