@tsonic/efcore-npgsql 10.0.2 → 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.EntityFrameworkCore/internal/index.d.ts +284 -280
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Npgsql/internal/index.d.ts +402 -290
- package/Npgsql.BackendMessages/internal/index.d.ts +4 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +13 -13
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +33 -31
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Diagnostics.Internal/internal/index.d.ts +4 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal/internal/index.d.ts +4 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +20 -16
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +51 -39
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +38 -33
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +32 -25
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +73 -54
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +21 -13
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +47 -47
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +29 -25
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +21 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +16 -12
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +179 -46
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions/internal/index.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +149 -117
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +155 -148
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +17 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +79 -51
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +16 -13
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +342 -465
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.ValueConversion/internal/index.d.ts +6 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +40 -32
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration/internal/index.d.ts +11 -7
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +39 -26
- package/Npgsql.Internal/internal/index.d.ts +141 -104
- package/Npgsql.Internal.Postgres/internal/index.d.ts +16 -2
- package/Npgsql.NameTranslation/internal/index.d.ts +13 -9
- package/Npgsql.PostgresTypes/internal/index.d.ts +34 -23
- package/Npgsql.Replication/internal/index.d.ts +49 -25
- package/Npgsql.Replication.Internal/internal/index.d.ts +10 -9
- package/Npgsql.Replication.PgOutput/internal/index.d.ts +31 -22
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +74 -36
- package/Npgsql.Replication.TestDecoding/internal/index.d.ts +18 -10
- package/Npgsql.Schema/internal/index.d.ts +26 -24
- package/Npgsql.TypeMapping/internal/index.d.ts +7 -3
- package/Npgsql.Util/internal/index.d.ts +4 -2
- package/NpgsqlTypes/internal/index.d.ts +145 -33
- package/__internal/extensions/index.d.ts +867 -89
- package/package.json +5 -5
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
// Import namespace modules for cross-namespace type references
|
|
7
7
|
import * as Microsoft_EntityFrameworkCore from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
8
|
+
import * as Microsoft_EntityFrameworkCore_Diagnostics from "../../Microsoft.EntityFrameworkCore.Diagnostics/internal/index.js";
|
|
9
|
+
import * as Microsoft_EntityFrameworkCore_Infrastructure from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
|
|
10
|
+
import * as Microsoft_EntityFrameworkCore_Metadata from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
|
|
11
|
+
import * as Microsoft_EntityFrameworkCore_Metadata_Builders from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.js";
|
|
12
|
+
import * as Microsoft_EntityFrameworkCore_Migrations from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations/internal/index.js";
|
|
13
|
+
import * as Microsoft_EntityFrameworkCore_Migrations_Operations from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.js";
|
|
14
|
+
import * as Microsoft_EntityFrameworkCore_Query from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query/internal/index.js";
|
|
15
|
+
import * as Microsoft_EntityFrameworkCore_Query_SqlExpressions from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.js";
|
|
16
|
+
import * as Microsoft_EntityFrameworkCore_Scaffolding_Metadata from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.js";
|
|
17
|
+
import * as Microsoft_EntityFrameworkCore_Storage_ValueConversion from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.js";
|
|
18
|
+
import * as Microsoft_Extensions_DependencyInjection from "../../Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
19
|
+
import * as Npgsql from "../../Npgsql/internal/index.js";
|
|
20
|
+
import * as Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure from "../../Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.js";
|
|
8
21
|
import * as Npgsql_EntityFrameworkCore_PostgreSQL_Metadata from "../../Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.js";
|
|
9
22
|
import * as Npgsql_Internal from "../../Npgsql.Internal/internal/index.js";
|
|
10
23
|
import * as Npgsql_Replication from "../../Npgsql.Replication/internal/index.js";
|
|
@@ -13,151 +26,916 @@ import * as Npgsql_Replication_PgOutput from "../../Npgsql.Replication.PgOutput/
|
|
|
13
26
|
import * as Npgsql_Replication_PgOutput_Messages from "../../Npgsql.Replication.PgOutput.Messages/internal/index.js";
|
|
14
27
|
import * as Npgsql_Replication_TestDecoding from "../../Npgsql.Replication.TestDecoding/internal/index.js";
|
|
15
28
|
import * as NpgsqlTypes from "../../NpgsqlTypes/internal/index.js";
|
|
29
|
+
import * as System from "@tsonic/dotnet/System/internal/index.js";
|
|
30
|
+
import * as System_Collections_Generic from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
31
|
+
import * as System_Data_Common from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
32
|
+
import * as System_Linq_Expressions from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
33
|
+
import * as System_Net from "@tsonic/dotnet/System.Net/internal/index.js";
|
|
34
|
+
import * as System_Net_NetworkInformation from "@tsonic/dotnet/System.Net.NetworkInformation/internal/index.js";
|
|
35
|
+
import * as System_Runtime_CompilerServices from "@tsonic/dotnet/System.Runtime.CompilerServices/internal/index.js";
|
|
36
|
+
import * as System_Threading from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
37
|
+
import * as System_Threading_Tasks from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
16
38
|
|
|
17
39
|
// Import primitive type aliases
|
|
18
40
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
19
41
|
|
|
42
|
+
// Import sticky extension scope helper
|
|
43
|
+
import type { Rewrap } from '@tsonic/core/lang.js';
|
|
44
|
+
|
|
20
45
|
// Import CLR type aliases for generic type arguments
|
|
21
|
-
import * as System_Internal from "
|
|
46
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
22
47
|
|
|
23
48
|
// Import unsafe type markers
|
|
24
49
|
import type { ptr } from '@tsonic/core/types.js';
|
|
25
50
|
|
|
51
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder {
|
|
52
|
+
UseNpgsql(npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
53
|
+
UseNpgsql(connectionString: string, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
54
|
+
UseNpgsql(connection: System_Data_Common.DbConnection, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
55
|
+
UseNpgsql(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
56
|
+
UseNpgsql(dataSource: System_Data_Common.DbDataSource, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T> {
|
|
60
|
+
UseNpgsql(npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
61
|
+
UseNpgsql(connectionString: string, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
62
|
+
UseNpgsql(connection: System_Data_Common.DbConnection, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
63
|
+
UseNpgsql(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
64
|
+
UseNpgsql(dataSource: System_Data_Common.DbDataSource, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DbFunctions {
|
|
68
|
+
ArrayAgg<T>(input: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, T[]>;
|
|
69
|
+
JsonAgg<T>(input: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, T[]>;
|
|
70
|
+
JsonbAgg<T>(input: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, T[]>;
|
|
71
|
+
Sum(input: System_Collections_Generic.IEnumerable_1<System.TimeSpan>): Rewrap<this, System.Nullable_1<System.TimeSpan>>;
|
|
72
|
+
Average(input: System_Collections_Generic.IEnumerable_1<System.TimeSpan>): Rewrap<this, System.Nullable_1<System.TimeSpan>>;
|
|
73
|
+
JsonObjectAgg<T1, T2>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): Rewrap<this, string>;
|
|
74
|
+
JsonObjectAgg<T1, T2, TReturn>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): Rewrap<this, TReturn>;
|
|
75
|
+
JsonbObjectAgg<T1, T2>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): Rewrap<this, string>;
|
|
76
|
+
JsonbObjectAgg<T1, T2, TReturn>(keyValuePairs: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T1, T2>>): Rewrap<this, TReturn>;
|
|
77
|
+
StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
78
|
+
StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
79
|
+
StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
80
|
+
StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
81
|
+
StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
82
|
+
StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
83
|
+
StandardDeviationSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
84
|
+
StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
85
|
+
StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
86
|
+
StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
87
|
+
StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
88
|
+
StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
89
|
+
StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
90
|
+
StandardDeviationPopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
91
|
+
VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
92
|
+
VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
93
|
+
VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
94
|
+
VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
95
|
+
VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
96
|
+
VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
97
|
+
VarianceSample(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
98
|
+
VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Byte>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
99
|
+
VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int16>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
100
|
+
VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int32>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
101
|
+
VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Int64>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
102
|
+
VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Single>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
103
|
+
VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Double>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
104
|
+
VariancePopulation(values: System_Collections_Generic.IEnumerable_1<System_Internal.Decimal>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
105
|
+
Correlation(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
106
|
+
CovariancePopulation(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
107
|
+
CovarianceSample(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
108
|
+
RegrAverageX(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
109
|
+
RegrAverageY(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
110
|
+
RegrCount(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
111
|
+
RegrIntercept(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
112
|
+
RegrR2(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
113
|
+
RegrSlope(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
114
|
+
RegrSXX(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
115
|
+
RegrSXY(values: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Double, System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
116
|
+
ILike(matchExpression: string, pattern: string): Rewrap<this, boolean>;
|
|
117
|
+
ILike(matchExpression: string, pattern: string, escapeCharacter: string): Rewrap<this, boolean>;
|
|
118
|
+
StringToArray(value: string, delimiter: string): Rewrap<this, string[]>;
|
|
119
|
+
StringToArray(value: string, delimiter: string, nullString: string): Rewrap<this, string[]>;
|
|
120
|
+
Reverse(value: string): Rewrap<this, string>;
|
|
121
|
+
GreaterThan(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): Rewrap<this, boolean>;
|
|
122
|
+
LessThan(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): Rewrap<this, boolean>;
|
|
123
|
+
GreaterThanOrEqual(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): Rewrap<this, boolean>;
|
|
124
|
+
LessThanOrEqual(a: System_Runtime_CompilerServices.ITuple, b: System_Runtime_CompilerServices.ITuple): Rewrap<this, boolean>;
|
|
125
|
+
Distance(a: System.DateOnly, b: System.DateOnly): Rewrap<this, int>;
|
|
126
|
+
Distance(a: System.DateTime, b: System.DateTime): Rewrap<this, System.TimeSpan>;
|
|
127
|
+
ToDate(value: string, format: string): Rewrap<this, System.DateOnly>;
|
|
128
|
+
ToTimestamp(value: string, format: string): Rewrap<this, System.DateTime>;
|
|
129
|
+
ArrayToTsVector(lexemes: string[]): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
130
|
+
ToTsVector(document: string): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
131
|
+
ToTsVector(config: string, document: string): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
132
|
+
PlainToTsQuery(query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
133
|
+
PlainToTsQuery(config: string, query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
134
|
+
PhraseToTsQuery(query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
135
|
+
PhraseToTsQuery(config: string, query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
136
|
+
ToTsQuery(query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
137
|
+
ToTsQuery(config: string, query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
138
|
+
WebSearchToTsQuery(query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
139
|
+
WebSearchToTsQuery(config: string, query: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
140
|
+
Unaccent(regDictionary: string, text: string): Rewrap<this, string>;
|
|
141
|
+
Unaccent(text: string): Rewrap<this, string>;
|
|
142
|
+
FuzzyStringMatchSoundex(text: string): Rewrap<this, string>;
|
|
143
|
+
FuzzyStringMatchDifference(source: string, target: string): Rewrap<this, int>;
|
|
144
|
+
FuzzyStringMatchLevenshtein(source: string, target: string): Rewrap<this, int>;
|
|
145
|
+
FuzzyStringMatchLevenshtein(source: string, target: string, insertionCost: int, deletionCost: int, substitutionCost: int): Rewrap<this, int>;
|
|
146
|
+
FuzzyStringMatchLevenshteinLessEqual(source: string, target: string, maximumDistance: int): Rewrap<this, int>;
|
|
147
|
+
FuzzyStringMatchLevenshteinLessEqual(source: string, target: string, insertionCost: int, deletionCost: int, substitutionCost: int, maximumDistance: int): Rewrap<this, int>;
|
|
148
|
+
FuzzyStringMatchMetaphone(text: string, maximumOutputLength: int): Rewrap<this, string>;
|
|
149
|
+
FuzzyStringMatchDoubleMetaphone(text: string): Rewrap<this, string>;
|
|
150
|
+
FuzzyStringMatchDoubleMetaphoneAlt(text: string): Rewrap<this, string>;
|
|
151
|
+
JsonContains(json: unknown, contained: unknown): Rewrap<this, boolean>;
|
|
152
|
+
JsonContained(contained: unknown, json: unknown): Rewrap<this, boolean>;
|
|
153
|
+
JsonExists(json: unknown, key: string): Rewrap<this, boolean>;
|
|
154
|
+
JsonExistAny(json: unknown, ...keys: string[]): Rewrap<this, boolean>;
|
|
155
|
+
JsonExistAll(json: unknown, ...keys: string[]): Rewrap<this, boolean>;
|
|
156
|
+
JsonTypeof(json: unknown): Rewrap<this, string>;
|
|
157
|
+
LessThan(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
158
|
+
LessThan(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, boolean>;
|
|
159
|
+
LessThanOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
160
|
+
LessThanOrEqual(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, boolean>;
|
|
161
|
+
GreaterThanOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
162
|
+
GreaterThanOrEqual(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, boolean>;
|
|
163
|
+
GreaterThan(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
164
|
+
GreaterThan(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, boolean>;
|
|
165
|
+
ContainedBy(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
166
|
+
ContainedByOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
167
|
+
Contains(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
168
|
+
ContainsOrEqual(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
169
|
+
ContainsOrContainedBy(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
170
|
+
BitwiseNot(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
171
|
+
BitwiseNot(macaddr: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, System_Net_NetworkInformation.PhysicalAddress>;
|
|
172
|
+
BitwiseAnd(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
173
|
+
BitwiseAnd(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, System_Net_NetworkInformation.PhysicalAddress>;
|
|
174
|
+
BitwiseOr(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
175
|
+
BitwiseOr(macaddr: System_Net_NetworkInformation.PhysicalAddress, other: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, System_Net_NetworkInformation.PhysicalAddress>;
|
|
176
|
+
Add(inet: NpgsqlTypes.NpgsqlInet, value: int): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
177
|
+
Subtract(inet: NpgsqlTypes.NpgsqlInet, value: long): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
178
|
+
Subtract(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, int>;
|
|
179
|
+
Abbreviate(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, string>;
|
|
180
|
+
Abbreviate(cidr: System_Net.IPNetwork): Rewrap<this, string>;
|
|
181
|
+
Abbreviate(cidr: NpgsqlTypes.NpgsqlCidr): Rewrap<this, string>;
|
|
182
|
+
Broadcast(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
183
|
+
Family(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, int>;
|
|
184
|
+
Host(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, string>;
|
|
185
|
+
HostMask(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
186
|
+
MaskLength(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, int>;
|
|
187
|
+
Netmask(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
188
|
+
Network(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, System_Net.IPNetwork>;
|
|
189
|
+
SetMaskLength(inet: NpgsqlTypes.NpgsqlInet, length: int): Rewrap<this, NpgsqlTypes.NpgsqlInet>;
|
|
190
|
+
SetMaskLength(cidr: System_Net.IPNetwork, length: int): Rewrap<this, System_Net.IPNetwork>;
|
|
191
|
+
SetMaskLength(cidr: NpgsqlTypes.NpgsqlCidr, length: int): Rewrap<this, NpgsqlTypes.NpgsqlCidr>;
|
|
192
|
+
Text(inet: NpgsqlTypes.NpgsqlInet): Rewrap<this, string>;
|
|
193
|
+
SameFamily(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, boolean>;
|
|
194
|
+
Merge(inet: NpgsqlTypes.NpgsqlInet, other: NpgsqlTypes.NpgsqlInet): Rewrap<this, System_Net.IPNetwork>;
|
|
195
|
+
Truncate(macAddress: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, System_Net_NetworkInformation.PhysicalAddress>;
|
|
196
|
+
Set7BitMac8(macAddress: System_Net_NetworkInformation.PhysicalAddress): Rewrap<this, System_Net_NetworkInformation.PhysicalAddress>;
|
|
197
|
+
LessThan(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
198
|
+
LessThanOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
199
|
+
GreaterThanOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
200
|
+
GreaterThan(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
201
|
+
ContainedBy(inet: System_Net.IPAddress, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
202
|
+
ContainsOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System_Net.IPAddress): Rewrap<this, boolean>;
|
|
203
|
+
ContainedBy(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
204
|
+
ContainedByOrEqual(inet: System_Net.IPAddress, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
205
|
+
ContainedByOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
206
|
+
Contains(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System_Net.IPAddress): Rewrap<this, boolean>;
|
|
207
|
+
Contains(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
208
|
+
ContainsOrEqual(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
209
|
+
ContainsOrContainedBy(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System_Net.IPAddress): Rewrap<this, boolean>;
|
|
210
|
+
ContainsOrContainedBy(inet: System_Net.IPAddress, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
211
|
+
ContainsOrContainedBy(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
212
|
+
BitwiseNot(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
213
|
+
BitwiseAnd(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
214
|
+
BitwiseOr(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
215
|
+
Add(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, value: int): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
216
|
+
Subtract(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, value: int): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
217
|
+
Subtract(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, int>;
|
|
218
|
+
Abbreviate(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, string>;
|
|
219
|
+
Broadcast(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System_Net.IPAddress>;
|
|
220
|
+
Family(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, int>;
|
|
221
|
+
Host(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, string>;
|
|
222
|
+
HostMask(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System_Net.IPAddress>;
|
|
223
|
+
MaskLength(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, int>;
|
|
224
|
+
Netmask(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System_Net.IPAddress>;
|
|
225
|
+
Network(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
226
|
+
SetMaskLength(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, length: int): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
227
|
+
Text(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, string>;
|
|
228
|
+
SameFamily(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, boolean>;
|
|
229
|
+
Merge(cidr: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>, other: System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>): Rewrap<this, System.ValueTuple_2<System_Net.IPAddress, System_Internal.Int32>>;
|
|
230
|
+
TrigramsShow(text: string): Rewrap<this, string[]>;
|
|
231
|
+
TrigramsSimilarity(source: string, target: string): Rewrap<this, double>;
|
|
232
|
+
TrigramsWordSimilarity(source: string, target: string): Rewrap<this, double>;
|
|
233
|
+
TrigramsStrictWordSimilarity(source: string, target: string): Rewrap<this, double>;
|
|
234
|
+
TrigramsAreSimilar(source: string, target: string): Rewrap<this, boolean>;
|
|
235
|
+
TrigramsAreWordSimilar(source: string, target: string): Rewrap<this, boolean>;
|
|
236
|
+
TrigramsAreNotWordSimilar(source: string, target: string): Rewrap<this, boolean>;
|
|
237
|
+
TrigramsAreStrictWordSimilar(source: string, target: string): Rewrap<this, boolean>;
|
|
238
|
+
TrigramsAreNotStrictWordSimilar(source: string, target: string): Rewrap<this, boolean>;
|
|
239
|
+
TrigramsSimilarityDistance(source: string, target: string): Rewrap<this, double>;
|
|
240
|
+
TrigramsWordSimilarityDistance(source: string, target: string): Rewrap<this, double>;
|
|
241
|
+
TrigramsWordSimilarityDistanceInverted(source: string, target: string): Rewrap<this, double>;
|
|
242
|
+
TrigramsStrictWordSimilarityDistance(source: string, target: string): Rewrap<this, double>;
|
|
243
|
+
TrigramsStrictWordSimilarityDistanceInverted(source: string, target: string): Rewrap<this, double>;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade {
|
|
247
|
+
IsNpgsql(): Rewrap<this, boolean>;
|
|
248
|
+
SetDbDataSource(dataSource: System_Data_Common.DbDataSource): Rewrap<this, void>;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder {
|
|
252
|
+
HasStorageParameter(parameterName: string, parameterValue: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
|
|
253
|
+
IsUnlogged(unlogged?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
|
|
254
|
+
UseCockroachDbInterleaveInParent(parentTableType: System.Type, interleavePrefix: System_Collections_Generic.List_1<System_Internal.String>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T> {
|
|
258
|
+
HasGeneratedTsVectorColumn(tsVectorPropertyExpression: System_Linq_Expressions.Expression_1<System.Func_2<T, NpgsqlTypes.NpgsqlTsVector>>, config: string, includeExpression: System_Linq_Expressions.Expression_1<System.Func_2<T, unknown>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
|
|
259
|
+
HasStorageParameter(parameterName: string, parameterValue: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
|
|
260
|
+
IsUnlogged(unlogged?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
|
|
261
|
+
UseCockroachDbInterleaveInParent(parentTableType: System.Type, interleavePrefix: System_Collections_Generic.List_1<System_Internal.String>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<T>>;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder {
|
|
265
|
+
HasStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
|
|
266
|
+
CanSetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
267
|
+
IsUnlogged(unlogged?: boolean, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
|
|
268
|
+
CanSetIsUnlogged(unlogged?: boolean, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder {
|
|
272
|
+
HasMethod(method: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
273
|
+
CanSetMethod(method: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
274
|
+
HasOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
275
|
+
CanSetOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): Rewrap<this, boolean>;
|
|
276
|
+
IsTsVectorExpressionIndex(config: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
277
|
+
CanSetIsTsVectorExpressionIndex(config: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
278
|
+
UseCollation(values: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
279
|
+
CanSetCollation(values: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation: boolean): Rewrap<this, boolean>;
|
|
280
|
+
HasNullSortOrder(values: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>, fromDataAnnotation: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
281
|
+
CanSetNullSortOrder(values: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>, fromDataAnnotation: boolean): Rewrap<this, boolean>;
|
|
282
|
+
IncludeProperties(propertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
283
|
+
CanSetIncludeProperties(propertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
284
|
+
IsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
285
|
+
CanSetIsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
286
|
+
AreNullsDistinct(nullsDistinct?: boolean, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
287
|
+
CanSetAreNullsDistinct(nullsDistinct?: boolean, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
288
|
+
HasStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
|
|
289
|
+
CanSetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder {
|
|
293
|
+
HasHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder | undefined>;
|
|
294
|
+
CanSetHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
295
|
+
HasValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
|
|
296
|
+
CanSetValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
297
|
+
HasPostgresExtension(schema: string, name: string, version?: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
|
|
298
|
+
HasPostgresExtension(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
|
|
299
|
+
CanSetPostgresExtension(schema: string, name: string, version?: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
300
|
+
HasPostgresEnum(schema: string, name: string, labels: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder>;
|
|
301
|
+
CanSetPostgresEnum(schema: string, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder {
|
|
305
|
+
HasHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder | undefined>;
|
|
306
|
+
CanSetHiLoSequence(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
307
|
+
HasSequence(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder | undefined>;
|
|
308
|
+
CanSetSequence(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
309
|
+
HasValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
|
|
310
|
+
CanSetValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
311
|
+
CanSetValueGenerationStrategy(valueGenerationStrategy: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
312
|
+
HasIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
|
|
313
|
+
CanSetIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): Rewrap<this, boolean>;
|
|
314
|
+
IsGeneratedTsVectorColumn(config: string, includedPropertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
|
|
315
|
+
CanSetIsGeneratedTsVectorColumn(config: string, includedPropertyNames: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
316
|
+
UseCompressionMethod(compressionMethod: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
|
|
317
|
+
CanSetCompressionMethod(compressionMethod: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder {
|
|
321
|
+
HasMethod(method: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
322
|
+
HasOperators(...operators: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
323
|
+
IsTsVectorExpressionIndex(config: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
324
|
+
UseCollation(...values: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
325
|
+
HasNullSortOrder(...values: Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
326
|
+
IncludeProperties(...propertyNames: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
327
|
+
IsCreatedConcurrently(createdConcurrently?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
328
|
+
AreNullsDistinct(nullsDistinct?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
329
|
+
HasStorageParameter(parameterName: string, parameterValue: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T> {
|
|
333
|
+
HasMethod(method: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
334
|
+
HasOperators(...operators: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
335
|
+
IsTsVectorExpressionIndex(config: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
336
|
+
UseCollation(...values: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
337
|
+
HasNullSortOrder(...values: Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
338
|
+
IncludeProperties(...propertyNames: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
339
|
+
IncludeProperties(includeExpression: System_Linq_Expressions.Expression_1<System.Func_2<T, unknown>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
340
|
+
IsCreatedConcurrently(createdConcurrently?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
341
|
+
AreNullsDistinct(nullsDistinct?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
342
|
+
HasStorageParameter(parameterName: string, parameterValue: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder {
|
|
346
|
+
UseHiLo(name?: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
347
|
+
UseSequence(name?: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
348
|
+
UseSerialColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
349
|
+
UseIdentityAlwaysColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
350
|
+
UseIdentityByDefaultColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
351
|
+
UseIdentityColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
352
|
+
HasIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
353
|
+
IsGeneratedTsVectorColumn(config: string, ...includedPropertyNames: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
354
|
+
UseCompressionMethod(compressionMethod: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T> {
|
|
358
|
+
UseHiLo(name?: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
359
|
+
UseSequence(name?: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
360
|
+
UseSerialColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
361
|
+
UseIdentityAlwaysColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
362
|
+
UseIdentityByDefaultColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
363
|
+
UseIdentityColumn(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
364
|
+
HasIdentityOptions(startValue?: System.Nullable_1<System_Internal.Int64>, incrementBy?: System.Nullable_1<System_Internal.Int64>, minValue?: System.Nullable_1<System_Internal.Int64>, maxValue?: System.Nullable_1<System_Internal.Int64>, cyclic?: System.Nullable_1<System_Internal.Boolean>, numbersToCache?: System.Nullable_1<System_Internal.Int64>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
365
|
+
HasPostgresArrayConversion<TElementProperty, TElementProvider>(convertToProviderExpression: System_Linq_Expressions.Expression_1<System.Func_2<TElementProperty, TElementProvider>>, convertFromProviderExpression: System_Linq_Expressions.Expression_1<System.Func_2<TElementProvider, TElementProperty>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TElementProperty[]>>;
|
|
366
|
+
HasPostgresArrayConversion<TElementProperty, TElementProvider>(elementValueConverter: Microsoft_EntityFrameworkCore_Storage_ValueConversion.ValueConverter): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TElementProperty[]>>;
|
|
367
|
+
IsGeneratedTsVectorColumn(config: string, ...includedPropertyNames: string[]): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<NpgsqlTypes.NpgsqlTsVector>>;
|
|
368
|
+
UseCompressionMethod(compressionMethod: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
|
|
372
|
+
SetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): Rewrap<this, unknown>;
|
|
373
|
+
GetStorageParameterConfigurationSource(parameterName: string): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
374
|
+
SetIsUnlogged(unlogged: boolean, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
375
|
+
GetIsUnloggedConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
|
|
379
|
+
SetMethod(method: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
380
|
+
GetMethodConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
381
|
+
SetOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
382
|
+
GetOperatorsConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
383
|
+
SetCollation(collations: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
384
|
+
GetCollationConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
385
|
+
SetNullSortOrder(nullSortOrder: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>, fromDataAnnotation?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder> | undefined>;
|
|
386
|
+
GetNullSortOrderConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
387
|
+
SetIncludeProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
388
|
+
GetIncludePropertiesConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
389
|
+
SetIsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
390
|
+
GetIsCreatedConcurrentlyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
391
|
+
SetAreNullsDistinct(nullsDistinct: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
392
|
+
GetAreNullsDistinctConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
393
|
+
SetTsVectorConfig(config: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
394
|
+
GetTsVectorConfigConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
395
|
+
SetStorageParameter(parameterName: string, parameterValue: unknown, fromDataAnnotation?: boolean): Rewrap<this, unknown>;
|
|
396
|
+
GetStorageParameterConfigurationSource(parameterName: string): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
|
|
400
|
+
SetHiLoSequenceName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
401
|
+
GetHiLoSequenceNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
402
|
+
SetHiLoSequenceSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
403
|
+
GetHiLoSequenceSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
404
|
+
SetSequenceNameSuffix(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
405
|
+
GetSequenceNameSuffixConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
406
|
+
SetSequenceSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
407
|
+
GetSequenceSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
408
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
|
|
409
|
+
GetValueGenerationStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
410
|
+
GetOrAddPostgresExtension(schema: string, name: string, version: string): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
|
|
411
|
+
GetOrAddPostgresEnum(schema: string, name: string, labels: string[]): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>;
|
|
412
|
+
SetDatabaseTemplate(template: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
413
|
+
GetDatabaseTemplateConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
414
|
+
SetTablespace(tablespace: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
415
|
+
GetTablespaceConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
|
|
419
|
+
SetHiLoSequenceName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
420
|
+
GetHiLoSequenceNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
421
|
+
SetHiLoSequenceSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
422
|
+
GetHiLoSequenceSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
423
|
+
RemoveHiLoOptions(): Rewrap<this, void>;
|
|
424
|
+
SetSequenceName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
425
|
+
GetSequenceNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
426
|
+
SetSequenceSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
427
|
+
GetSequenceSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
428
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
|
|
429
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
|
|
430
|
+
GetValueGenerationStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
431
|
+
GetValueGenerationStrategyConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
432
|
+
SetIdentityStartValue(startValue: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
433
|
+
GetIdentityStartValueConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
434
|
+
SetIdentityIncrementBy(incrementBy: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
435
|
+
GetIdentityIncrementByConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
436
|
+
SetIdentityMinValue(minValue: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
437
|
+
GetIdentityMinValueConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
438
|
+
SetIdentityMaxValue(maxValue: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
439
|
+
GetIdentityMaxValueConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
440
|
+
SetIdentityIsCyclic(cyclic: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
441
|
+
GetIdentityIsCyclicConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
442
|
+
SetIdentityNumbersToCache(numbersToCache: System.Nullable_1<System_Internal.Int64>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
443
|
+
GetIdentityNumbersToCacheConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
444
|
+
RemoveIdentityOptions(): Rewrap<this, void>;
|
|
445
|
+
SetTsVectorConfig(config: string, fromDataAnnotation?: boolean): Rewrap<this, string>;
|
|
446
|
+
GetTsVectorConfigConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
447
|
+
SetTsVectorProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
448
|
+
GetTsVectorPropertiesConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
449
|
+
SetCompressionMethod(compressionMethod: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
450
|
+
GetCompressionMethodConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides {
|
|
454
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
|
|
455
|
+
GetValueGenerationStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
|
|
459
|
+
GetStorageParameter(parameterName: string): Rewrap<this, string | undefined>;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IIndex {
|
|
463
|
+
GetStorageParameter(parameterName: string): Rewrap<this, string | undefined>;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
|
|
467
|
+
SetStorageParameter(parameterName: string, parameterValue: unknown): Rewrap<this, void>;
|
|
468
|
+
SetIsUnlogged(unlogged: boolean): Rewrap<this, void>;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableIndex {
|
|
472
|
+
SetMethod(method: string): Rewrap<this, void>;
|
|
473
|
+
SetOperators(operators: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): Rewrap<this, void>;
|
|
474
|
+
SetCollation(collations: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): Rewrap<this, void>;
|
|
475
|
+
SetNullSortOrder(nullSortOrder: System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder>): Rewrap<this, void>;
|
|
476
|
+
SetIncludeProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): Rewrap<this, void>;
|
|
477
|
+
SetIsCreatedConcurrently(createdConcurrently: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
|
|
478
|
+
SetAreNullsDistinct(nullsDistinct: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
|
|
479
|
+
SetTsVectorConfig(config: string): Rewrap<this, void>;
|
|
480
|
+
SetStorageParameter(parameterName: string, parameterValue: unknown): Rewrap<this, void>;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
|
|
484
|
+
SetHiLoSequenceName(name: string): Rewrap<this, void>;
|
|
485
|
+
SetHiLoSequenceSchema(value: string): Rewrap<this, void>;
|
|
486
|
+
SetSequenceNameSuffix(name: string): Rewrap<this, void>;
|
|
487
|
+
SetSequenceSchema(value: string): Rewrap<this, void>;
|
|
488
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>): Rewrap<this, void>;
|
|
489
|
+
GetOrAddPostgresExtension(schema: string, name: string, version: string): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
|
|
490
|
+
GetOrAddPostgresEnum(schema: string, name: string, labels: string[]): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>;
|
|
491
|
+
GetOrAddPostgresRange(schema: string, name: string, subtype: string, canonicalFunction?: string, subtypeOpClass?: string, collation?: string, subtypeDiff?: string): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>;
|
|
492
|
+
SetDatabaseTemplate(template: string): Rewrap<this, void>;
|
|
493
|
+
SetTablespace(tablespace: string): Rewrap<this, void>;
|
|
494
|
+
GetOrAddCollation(schema: string, name: string, lcCollate: string, lcCtype: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
|
|
498
|
+
SetHiLoSequenceName(name: string): Rewrap<this, void>;
|
|
499
|
+
SetHiLoSequenceSchema(schema: string): Rewrap<this, void>;
|
|
500
|
+
RemoveHiLoOptions(): Rewrap<this, void>;
|
|
501
|
+
SetSequenceName(name: string): Rewrap<this, void>;
|
|
502
|
+
SetSequenceSchema(schema: string): Rewrap<this, void>;
|
|
503
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>): Rewrap<this, void>;
|
|
504
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
|
|
505
|
+
SetIdentityStartValue(startValue: System.Nullable_1<System_Internal.Int64>): Rewrap<this, void>;
|
|
506
|
+
SetIdentityIncrementBy(incrementBy: System.Nullable_1<System_Internal.Int64>): Rewrap<this, void>;
|
|
507
|
+
SetIdentityMinValue(minValue: System.Nullable_1<System_Internal.Int64>): Rewrap<this, void>;
|
|
508
|
+
SetIdentityMaxValue(maxValue: System.Nullable_1<System_Internal.Int64>): Rewrap<this, void>;
|
|
509
|
+
SetIdentityIsCyclic(cyclic: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
|
|
510
|
+
SetIdentityNumbersToCache(numbersToCache: System.Nullable_1<System_Internal.Int64>): Rewrap<this, void>;
|
|
511
|
+
RemoveIdentityOptions(): Rewrap<this, void>;
|
|
512
|
+
SetTsVectorConfig(config: string): Rewrap<this, void>;
|
|
513
|
+
SetTsVectorProperties(properties: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): Rewrap<this, void>;
|
|
514
|
+
SetCompressionMethod(compressionMethod: string): Rewrap<this, void>;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides {
|
|
518
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>): Rewrap<this, void>;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IProperty {
|
|
522
|
+
FindHiLoSequence(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
|
|
523
|
+
FindHiLoSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
|
|
524
|
+
FindSequence(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
|
|
525
|
+
FindSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
|
|
529
|
+
GetStorageParameters(): Rewrap<this, System_Collections_Generic.Dictionary_2<System_Internal.String, unknown | undefined>>;
|
|
530
|
+
GetIsUnlogged(): Rewrap<this, boolean>;
|
|
531
|
+
GetCockroachDbInterleaveInParent(): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.CockroachDbInterleaveInParent>;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex {
|
|
535
|
+
GetMethod(): Rewrap<this, string | undefined>;
|
|
536
|
+
GetOperators(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
537
|
+
GetCollation(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
538
|
+
GetNullSortOrder(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NullSortOrder> | undefined>;
|
|
539
|
+
GetIncludeProperties(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
540
|
+
IsCreatedConcurrently(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
541
|
+
GetAreNullsDistinct(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
542
|
+
GetTsVectorConfig(): Rewrap<this, string | undefined>;
|
|
543
|
+
GetStorageParameters(): Rewrap<this, System_Collections_Generic.Dictionary_2<System_Internal.String, unknown | undefined>>;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel {
|
|
547
|
+
GetHiLoSequenceName(): Rewrap<this, string>;
|
|
548
|
+
GetHiLoSequenceSchema(): Rewrap<this, string | undefined>;
|
|
549
|
+
GetSequenceNameSuffix(): Rewrap<this, string>;
|
|
550
|
+
GetSequenceSchema(): Rewrap<this, string | undefined>;
|
|
551
|
+
GetValueGenerationStrategy(): Rewrap<this, System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
|
|
552
|
+
GetPostgresExtensions(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
|
|
553
|
+
GetPostgresEnums(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
|
|
554
|
+
PostgresRanges(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>>;
|
|
555
|
+
GetDatabaseTemplate(): Rewrap<this, string | undefined>;
|
|
556
|
+
GetTablespace(): Rewrap<this, string | undefined>;
|
|
557
|
+
GetCollations(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>>;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty {
|
|
561
|
+
GetHiLoSequenceName(): Rewrap<this, string | undefined>;
|
|
562
|
+
GetHiLoSequenceName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
563
|
+
GetHiLoSequenceSchema(): Rewrap<this, string | undefined>;
|
|
564
|
+
GetHiLoSequenceSchema(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
565
|
+
FindHiLoSequence(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
|
|
566
|
+
FindHiLoSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
|
|
567
|
+
GetSequenceName(): Rewrap<this, string | undefined>;
|
|
568
|
+
GetSequenceName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
569
|
+
GetSequenceSchema(): Rewrap<this, string | undefined>;
|
|
570
|
+
GetSequenceSchema(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
571
|
+
FindSequence(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
|
|
572
|
+
FindSequence(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
|
|
573
|
+
GetValueGenerationStrategy(): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>;
|
|
574
|
+
GetValueGenerationStrategy(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>;
|
|
575
|
+
GetIdentityStartValue(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
576
|
+
GetIdentityIncrementBy(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
577
|
+
GetIdentityMinValue(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
578
|
+
GetIdentityMaxValue(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
579
|
+
GetIdentityIsCyclic(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
580
|
+
GetIdentityNumbersToCache(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
581
|
+
GetTsVectorConfig(): Rewrap<this, string | undefined>;
|
|
582
|
+
GetTsVectorProperties(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
|
|
583
|
+
GetCompressionMethod(): Rewrap<this, string | undefined>;
|
|
584
|
+
GetCompressionMethod(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides {
|
|
588
|
+
GetValueGenerationStrategy(): Rewrap<this, System.Nullable_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy>>;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_MigrationBuilder {
|
|
592
|
+
IsNpgsql(): Rewrap<this, boolean>;
|
|
593
|
+
EnsurePostgresExtension(name: string, schema?: string, version?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder>;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_AlterDatabaseOperation {
|
|
597
|
+
GetPostgresCollations(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>>;
|
|
598
|
+
GetOldPostgresCollations(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresCollation>>;
|
|
599
|
+
GetPostgresExtensions(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
|
|
600
|
+
GetOldPostgresExtensions(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
|
|
601
|
+
GetPostgresEnums(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
|
|
602
|
+
GetOldPostgresEnums(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
|
|
603
|
+
GetPostgresRanges(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>>;
|
|
604
|
+
GetOldPostgresRanges(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresRange>>;
|
|
605
|
+
GetOrAddPostgresExtension(schema: string, name: string, version: string): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_ModelBuilder {
|
|
609
|
+
UseHiLo(name?: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
610
|
+
UseSerialColumns(): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
611
|
+
UseIdentityAlwaysColumns(): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
612
|
+
UseIdentityByDefaultColumns(): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
613
|
+
UseIdentityColumns(): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
614
|
+
UseKeySequences(nameSuffix?: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
615
|
+
HasPostgresExtension(schema: string, name: string, version?: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
616
|
+
HasPostgresExtension(name: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
617
|
+
HasPostgresEnum(schema: string, name: string, labels: string[]): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
618
|
+
HasPostgresEnum(name: string, labels: string[]): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
619
|
+
HasPostgresEnum<TEnum>(schema?: string, name?: string, nameTranslator?: Npgsql.INpgsqlNameTranslator): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
620
|
+
UseDatabaseTemplate(templateDatabaseName: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
621
|
+
HasPostgresRange(schema: string, name: string, subtype: string, canonicalFunction?: string, subtypeOpClass?: string, collation?: string, subtypeDiff?: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
622
|
+
HasPostgresRange(name: string, subtype: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
623
|
+
UseTablespace(tablespace: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
624
|
+
HasCollation(name: string, locale: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
625
|
+
HasCollation(schema: string, name: string, locale: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
626
|
+
HasCollation(schema: string, name: string, lcCollate: string, lcCtype: string, provider?: string, deterministic?: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseModel {
|
|
630
|
+
GetOrAddPostgresExtension(schema: string, name: string, version: string): Rewrap<this, Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>;
|
|
631
|
+
GetPostgresExtensions(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresExtension>>;
|
|
632
|
+
GetPostgresEnums(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.PostgresEnum>>;
|
|
633
|
+
}
|
|
634
|
+
|
|
26
635
|
export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlCube {
|
|
27
|
-
Overlaps(other: NpgsqlTypes.NpgsqlCube):
|
|
28
|
-
Contains(other: NpgsqlTypes.NpgsqlCube):
|
|
29
|
-
ContainedBy(other: NpgsqlTypes.NpgsqlCube):
|
|
30
|
-
NthCoordinate(index: int):
|
|
31
|
-
NthCoordinateKnn(index: int):
|
|
32
|
-
Distance(other: NpgsqlTypes.NpgsqlCube):
|
|
33
|
-
DistanceTaxicab(other: NpgsqlTypes.NpgsqlCube):
|
|
34
|
-
DistanceChebyshev(other: NpgsqlTypes.NpgsqlCube):
|
|
35
|
-
Union(other: NpgsqlTypes.NpgsqlCube):
|
|
36
|
-
Intersect(other: NpgsqlTypes.NpgsqlCube):
|
|
37
|
-
Enlarge(radius: double, dimensions: int):
|
|
636
|
+
Overlaps(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, boolean>;
|
|
637
|
+
Contains(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, boolean>;
|
|
638
|
+
ContainedBy(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, boolean>;
|
|
639
|
+
NthCoordinate(index: int): Rewrap<this, double>;
|
|
640
|
+
NthCoordinateKnn(index: int): Rewrap<this, double>;
|
|
641
|
+
Distance(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, double>;
|
|
642
|
+
DistanceTaxicab(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, double>;
|
|
643
|
+
DistanceChebyshev(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, double>;
|
|
644
|
+
Union(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, NpgsqlTypes.NpgsqlCube>;
|
|
645
|
+
Intersect(other: NpgsqlTypes.NpgsqlCube): Rewrap<this, NpgsqlTypes.NpgsqlCube>;
|
|
646
|
+
Enlarge(radius: double, dimensions: int): Rewrap<this, NpgsqlTypes.NpgsqlCube>;
|
|
38
647
|
}
|
|
39
648
|
|
|
40
649
|
export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlRange_1<T> {
|
|
41
|
-
ContainedBy(multirange: NpgsqlTypes.NpgsqlRange_1<T>[]):
|
|
42
|
-
ContainedBy(multirange: List_1<NpgsqlTypes.NpgsqlRange_1<T>>):
|
|
43
|
-
Contains(value: T):
|
|
44
|
-
Contains(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
45
|
-
ContainedBy(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
46
|
-
Overlaps(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
47
|
-
IsStrictlyLeftOf(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
48
|
-
IsStrictlyRightOf(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
49
|
-
DoesNotExtendLeftOf(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
50
|
-
DoesNotExtendRightOf(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
51
|
-
IsAdjacentTo(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
52
|
-
Union(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
53
|
-
Intersect(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
54
|
-
Except(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
55
|
-
Merge(b: NpgsqlTypes.NpgsqlRange_1<T>):
|
|
650
|
+
ContainedBy(multirange: NpgsqlTypes.NpgsqlRange_1<T>[]): Rewrap<this, boolean>;
|
|
651
|
+
ContainedBy(multirange: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
652
|
+
Contains(value: T): Rewrap<this, boolean>;
|
|
653
|
+
Contains(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
654
|
+
ContainedBy(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
655
|
+
Overlaps(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
656
|
+
IsStrictlyLeftOf(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
657
|
+
IsStrictlyRightOf(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
658
|
+
DoesNotExtendLeftOf(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
659
|
+
DoesNotExtendRightOf(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
660
|
+
IsAdjacentTo(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
661
|
+
Union(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>>;
|
|
662
|
+
Intersect(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>>;
|
|
663
|
+
Except(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>>;
|
|
664
|
+
Merge(b: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>>;
|
|
56
665
|
}
|
|
57
666
|
|
|
58
667
|
export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsQuery {
|
|
59
|
-
And(query2: NpgsqlTypes.NpgsqlTsQuery):
|
|
60
|
-
Or(query2: NpgsqlTypes.NpgsqlTsQuery):
|
|
61
|
-
ToNegative():
|
|
62
|
-
Contains(query2: NpgsqlTypes.NpgsqlTsQuery):
|
|
63
|
-
IsContainedIn(query2: NpgsqlTypes.NpgsqlTsQuery):
|
|
64
|
-
GetNodeCount():
|
|
65
|
-
GetQueryTree():
|
|
66
|
-
GetResultHeadline(document: string):
|
|
67
|
-
GetResultHeadline(document: string, options: string):
|
|
68
|
-
GetResultHeadline(config: string, document: string, options: string):
|
|
69
|
-
Rewrite(target: NpgsqlTypes.NpgsqlTsQuery, substitute: NpgsqlTypes.NpgsqlTsQuery):
|
|
70
|
-
Rewrite(select: string):
|
|
71
|
-
ToPhrase(query2: NpgsqlTypes.NpgsqlTsQuery):
|
|
72
|
-
ToPhrase(query2: NpgsqlTypes.NpgsqlTsQuery, distance: int):
|
|
668
|
+
And(query2: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
669
|
+
Or(query2: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
670
|
+
ToNegative(): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
671
|
+
Contains(query2: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, boolean>;
|
|
672
|
+
IsContainedIn(query2: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, boolean>;
|
|
673
|
+
GetNodeCount(): Rewrap<this, int>;
|
|
674
|
+
GetQueryTree(): Rewrap<this, string>;
|
|
675
|
+
GetResultHeadline(document: string): Rewrap<this, string>;
|
|
676
|
+
GetResultHeadline(document: string, options: string): Rewrap<this, string>;
|
|
677
|
+
GetResultHeadline(config: string, document: string, options: string): Rewrap<this, string>;
|
|
678
|
+
Rewrite(target: NpgsqlTypes.NpgsqlTsQuery, substitute: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
679
|
+
Rewrite(select: string): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
680
|
+
ToPhrase(query2: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
681
|
+
ToPhrase(query2: NpgsqlTypes.NpgsqlTsQuery, distance: int): Rewrap<this, NpgsqlTypes.NpgsqlTsQuery>;
|
|
73
682
|
}
|
|
74
683
|
|
|
75
684
|
export interface __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsVector {
|
|
76
|
-
Matches(query: string):
|
|
77
|
-
Matches(query: NpgsqlTypes.NpgsqlTsQuery):
|
|
78
|
-
Concat(vector2: NpgsqlTypes.NpgsqlTsVector):
|
|
79
|
-
SetWeight(weight: NpgsqlTypes.NpgsqlTsVector_Lexeme_Weight):
|
|
80
|
-
SetWeight(weight: NpgsqlTypes.NpgsqlTsVector_Lexeme_Weight, lexemes: string[]):
|
|
81
|
-
SetWeight(weight: char):
|
|
82
|
-
SetWeight(weight: char, lexemes: string[]):
|
|
83
|
-
Delete(lexeme: string):
|
|
84
|
-
Delete(lexemes: string[]):
|
|
85
|
-
Filter(weights: char[]):
|
|
86
|
-
GetLength():
|
|
87
|
-
ToStripped():
|
|
88
|
-
Rank(query: NpgsqlTypes.NpgsqlTsQuery):
|
|
89
|
-
Rank(query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization):
|
|
90
|
-
Rank(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery):
|
|
91
|
-
Rank(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization):
|
|
92
|
-
RankCoverDensity(query: NpgsqlTypes.NpgsqlTsQuery):
|
|
93
|
-
RankCoverDensity(query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization):
|
|
94
|
-
RankCoverDensity(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery):
|
|
95
|
-
RankCoverDensity(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization):
|
|
685
|
+
Matches(query: string): Rewrap<this, boolean>;
|
|
686
|
+
Matches(query: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, boolean>;
|
|
687
|
+
Concat(vector2: NpgsqlTypes.NpgsqlTsVector): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
688
|
+
SetWeight(weight: NpgsqlTypes.NpgsqlTsVector_Lexeme_Weight): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
689
|
+
SetWeight(weight: NpgsqlTypes.NpgsqlTsVector_Lexeme_Weight, lexemes: string[]): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
690
|
+
SetWeight(weight: char): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
691
|
+
SetWeight(weight: char, lexemes: string[]): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
692
|
+
Delete(lexeme: string): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
693
|
+
Delete(lexemes: string[]): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
694
|
+
Filter(weights: char[]): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
695
|
+
GetLength(): Rewrap<this, int>;
|
|
696
|
+
ToStripped(): Rewrap<this, NpgsqlTypes.NpgsqlTsVector>;
|
|
697
|
+
Rank(query: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, float>;
|
|
698
|
+
Rank(query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization): Rewrap<this, float>;
|
|
699
|
+
Rank(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, float>;
|
|
700
|
+
Rank(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization): Rewrap<this, float>;
|
|
701
|
+
RankCoverDensity(query: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, float>;
|
|
702
|
+
RankCoverDensity(query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization): Rewrap<this, float>;
|
|
703
|
+
RankCoverDensity(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery): Rewrap<this, float>;
|
|
704
|
+
RankCoverDensity(weights: float[], query: NpgsqlTypes.NpgsqlTsQuery, normalization: Microsoft_EntityFrameworkCore.NpgsqlTsRankingNormalization): Rewrap<this, float>;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> {
|
|
708
|
+
RangeAgg<T>(): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>[]>;
|
|
709
|
+
RangeIntersectAgg<T>(): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>>;
|
|
710
|
+
RangeIntersectAgg<T>(): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>[]>;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_List_1<T> {
|
|
714
|
+
Contains<T>(value: T): Rewrap<this, boolean>;
|
|
715
|
+
Contains<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
716
|
+
Contains<T>(multirange2: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
717
|
+
ContainedBy<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
718
|
+
Overlaps<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
719
|
+
Overlaps<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
720
|
+
IsStrictlyLeftOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
721
|
+
IsStrictlyLeftOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
722
|
+
IsStrictlyRightOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
723
|
+
IsStrictlyRightOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
724
|
+
DoesNotExtendLeftOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
725
|
+
DoesNotExtendLeftOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
726
|
+
DoesNotExtendRightOf<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
727
|
+
DoesNotExtendRightOf<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
728
|
+
IsAdjacentTo<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, boolean>;
|
|
729
|
+
IsAdjacentTo<T>(range: NpgsqlTypes.NpgsqlRange_1<T>): Rewrap<this, boolean>;
|
|
730
|
+
Union<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>>;
|
|
731
|
+
Intersect<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>>;
|
|
732
|
+
Except<T>(multirange2: System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>): Rewrap<this, System_Collections_Generic.List_1<NpgsqlTypes.NpgsqlRange_1<T>>>;
|
|
733
|
+
Merge<T>(): Rewrap<this, NpgsqlTypes.NpgsqlRange_1<T>>;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex {
|
|
737
|
+
AreCompatibleForNpgsql(duplicateIndex: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
|
|
741
|
+
AddNpgsql<TContext>(connectionString: string, npgsqlOptionsAction?: System.Action_1<Npgsql_EntityFrameworkCore_PostgreSQL_Infrastructure.NpgsqlDbContextOptionsBuilder>, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
742
|
+
AddEntityFrameworkNpgsql(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal_ShapedQueryExpression {
|
|
746
|
+
TryExtractArray(array: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, ignoreOrderings?: boolean, ignorePredicate?: boolean): Rewrap<this, boolean>;
|
|
747
|
+
TryExtractArray(array: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, projectedColumn: Microsoft_EntityFrameworkCore_Query_SqlExpressions.ColumnExpression, ignoreOrderings?: boolean, ignorePredicate?: boolean): Rewrap<this, boolean>;
|
|
748
|
+
TryExtractJsonArray(jsonArray: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, projectedElement: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, isElementNullable: boolean, ignoreOrderings?: boolean, ignorePredicate?: boolean): Rewrap<this, boolean>;
|
|
749
|
+
TryConvertToArray(array: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, ignoreOrderings?: boolean, ignorePredicate?: boolean): Rewrap<this, boolean>;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Internal_IDiagnosticsLogger_1<T> {
|
|
753
|
+
MissingSchemaWarning(schemaName: string): Rewrap<this, void>;
|
|
754
|
+
MissingTableWarning(tableName: string): Rewrap<this, void>;
|
|
755
|
+
ForeignKeyReferencesMissingPrincipalTableWarning(foreignKeyName: string, tableName: string, principalTableName: string): Rewrap<this, void>;
|
|
756
|
+
ColumnFound(tableName: string, columnName: string, dataTypeName: string, nullable: boolean, identity: boolean, defaultValue: string, computedValue: string): Rewrap<this, void>;
|
|
757
|
+
CollationFound(schema: string, collationName: string, lcCollate: string, lcCtype: string, provider: string, deterministic: boolean): Rewrap<this, void>;
|
|
758
|
+
UniqueConstraintFound(uniqueConstraintName: string, tableName: string): Rewrap<this, void>;
|
|
759
|
+
EnumColumnSkippedWarning(columnName: string): Rewrap<this, void>;
|
|
760
|
+
ExpressionIndexSkippedWarning(indexName: string, tableName: string): Rewrap<this, void>;
|
|
761
|
+
UnsupportedColumnIndexSkippedWarning(indexName: string, tableName: string): Rewrap<this, void>;
|
|
762
|
+
UnsupportedColumnConstraintSkippedWarning(indexName: string, tableName: string): Rewrap<this, void>;
|
|
96
763
|
}
|
|
97
764
|
|
|
98
765
|
export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_NpgsqlValueGenerationStrategy {
|
|
99
|
-
IsIdentity():
|
|
766
|
+
IsIdentity(): Rewrap<this, boolean>;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
export interface __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_Nullable_1<T> {
|
|
770
|
+
IsIdentity(): Rewrap<this, boolean>;
|
|
100
771
|
}
|
|
101
772
|
|
|
102
773
|
export interface __Ext_Npgsql_Internal_TypeInfoMapping {
|
|
103
|
-
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, converter: Npgsql_Internal.PgConverter):
|
|
104
|
-
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, converter: Npgsql_Internal.PgConverter, preferredFormat
|
|
105
|
-
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, resolver: Npgsql_Internal.PgConverterResolver, includeDataTypeName: boolean):
|
|
106
|
-
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, resolver: Npgsql_Internal.PgConverterResolver, includeDataTypeName: boolean, preferredFormat
|
|
774
|
+
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, converter: Npgsql_Internal.PgConverter): Rewrap<this, Npgsql_Internal.PgTypeInfo>;
|
|
775
|
+
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, converter: Npgsql_Internal.PgConverter, preferredFormat?: System.Nullable_1<Npgsql_Internal.DataFormat>, supportsWriting?: boolean): Rewrap<this, Npgsql_Internal.PgTypeInfo>;
|
|
776
|
+
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, resolver: Npgsql_Internal.PgConverterResolver, includeDataTypeName: boolean): Rewrap<this, Npgsql_Internal.PgResolverTypeInfo>;
|
|
777
|
+
CreateInfo(options: Npgsql_Internal.PgSerializerOptions, resolver: Npgsql_Internal.PgConverterResolver, includeDataTypeName: boolean, preferredFormat?: System.Nullable_1<Npgsql_Internal.DataFormat>, supportsWriting?: boolean): Rewrap<this, Npgsql_Internal.PgResolverTypeInfo>;
|
|
107
778
|
}
|
|
108
779
|
|
|
109
780
|
export interface __Ext_Npgsql_Replication_LogicalReplicationConnection {
|
|
110
|
-
CreatePgOutputReplicationSlot(slotName: string, temporarySlot
|
|
111
|
-
StartReplication(slot: Npgsql_Replication_PgOutput.PgOutputReplicationSlot, options: Npgsql_Replication_PgOutput.PgOutputReplicationOptions, cancellationToken: CancellationToken, walLocation
|
|
112
|
-
CreateTestDecodingReplicationSlot(slotName: string, temporarySlot
|
|
113
|
-
StartReplication(slot: Npgsql_Replication_TestDecoding.TestDecodingReplicationSlot, cancellationToken: CancellationToken, options
|
|
781
|
+
CreatePgOutputReplicationSlot(slotName: string, temporarySlot?: boolean, slotSnapshotInitMode?: System.Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase?: boolean, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Npgsql_Replication_PgOutput.PgOutputReplicationSlot>>;
|
|
782
|
+
StartReplication(slot: Npgsql_Replication_PgOutput.PgOutputReplicationSlot, options: Npgsql_Replication_PgOutput.PgOutputReplicationOptions, cancellationToken: System_Threading.CancellationToken, walLocation?: System.Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<Npgsql_Replication_PgOutput_Messages.PgOutputReplicationMessage>>;
|
|
783
|
+
CreateTestDecodingReplicationSlot(slotName: string, temporarySlot?: boolean, slotSnapshotInitMode?: System.Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase?: boolean, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Npgsql_Replication_TestDecoding.TestDecodingReplicationSlot>>;
|
|
784
|
+
StartReplication(slot: Npgsql_Replication_TestDecoding.TestDecodingReplicationSlot, cancellationToken: System_Threading.CancellationToken, options?: Npgsql_Replication_TestDecoding.TestDecodingOptions, walLocation?: System.Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<Npgsql_Replication_TestDecoding.TestDecodingData>>;
|
|
114
785
|
}
|
|
115
786
|
|
|
116
787
|
export interface __Ext_Npgsql_Replication_Internal_LogicalReplicationConnection {
|
|
117
|
-
CreateLogicalReplicationSlot(slotName: string, outputPlugin: string, isTemporary
|
|
118
|
-
StartLogicalReplication(slot: Npgsql_Replication_Internal.LogicalReplicationSlot, cancellationToken: CancellationToken, walLocation
|
|
788
|
+
CreateLogicalReplicationSlot(slotName: string, outputPlugin: string, isTemporary?: boolean, slotSnapshotInitMode?: System.Nullable_1<Npgsql_Replication.LogicalSlotSnapshotInitMode>, twoPhase?: boolean, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Npgsql_Replication.ReplicationSlotOptions>>;
|
|
789
|
+
StartLogicalReplication(slot: Npgsql_Replication_Internal.LogicalReplicationSlot, cancellationToken: System_Threading.CancellationToken, walLocation?: System.Nullable_1<NpgsqlTypes.NpgsqlLogSequenceNumber>, options?: System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>, bypassingStream?: boolean): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<Npgsql_Replication.XLogDataMessage>>;
|
|
119
790
|
}
|
|
120
791
|
|
|
792
|
+
// Internal helper types for sticky extension scopes
|
|
793
|
+
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
794
|
+
type __TsonicMergeExtMaps<A, B> = Omit<A, keyof B> & B;
|
|
795
|
+
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
796
|
+
type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
|
|
797
|
+
|
|
121
798
|
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
|
|
799
|
+
type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
|
|
800
|
+
(
|
|
801
|
+
(TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder ? __Ext_Microsoft_EntityFrameworkCore_MigrationBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Migrations_Operations.AlterDatabaseOperation ? __Ext_Microsoft_EntityFrameworkCore_AlterDatabaseOperation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Scaffolding_Metadata.DatabaseModel ? __Ext_Microsoft_EntityFrameworkCore_DatabaseModel : {}) & (TShape extends NpgsqlTypes.NpgsqlCube ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlCube : {}) & (TShape extends NpgsqlTypes.NpgsqlRange_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlRange_1<T0> : {}) & (TShape extends NpgsqlTypes.NpgsqlTsQuery ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsQuery : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends NpgsqlTypes.NpgsqlTsVector ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsVector : {}) & (TShape extends System_Collections_Generic.List_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_List_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
|
|
802
|
+
);
|
|
803
|
+
|
|
804
|
+
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
|
|
805
|
+
__tsonic_shape: unknown;
|
|
806
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore<this["__tsonic_shape"]>;
|
|
807
|
+
}
|
|
808
|
+
|
|
122
809
|
export type ExtensionMethods_Microsoft_EntityFrameworkCore<TShape> =
|
|
123
810
|
TShape extends null | undefined ? TShape
|
|
124
811
|
: TShape extends void ? void
|
|
125
|
-
: TShape &
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
812
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape>;
|
|
813
|
+
|
|
814
|
+
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Internal
|
|
815
|
+
type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
|
|
816
|
+
(
|
|
817
|
+
(TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex : {})
|
|
818
|
+
);
|
|
819
|
+
|
|
820
|
+
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal {
|
|
821
|
+
__tsonic_shape: unknown;
|
|
822
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<this["__tsonic_shape"]>;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
|
|
826
|
+
TShape extends null | undefined ? TShape
|
|
827
|
+
: TShape extends void ? void
|
|
828
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape>;
|
|
829
|
+
|
|
830
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
|
|
831
|
+
type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
832
|
+
(
|
|
833
|
+
(TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
|
|
834
|
+
);
|
|
835
|
+
|
|
836
|
+
interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection {
|
|
837
|
+
__tsonic_shape: unknown;
|
|
838
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<this["__tsonic_shape"]>;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
842
|
+
TShape extends null | undefined ? TShape
|
|
843
|
+
: TShape extends void ? void
|
|
844
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape>;
|
|
845
|
+
|
|
846
|
+
// Generic helper type for extension methods in namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal
|
|
847
|
+
type __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<TShape> =
|
|
848
|
+
(
|
|
849
|
+
(TShape extends Microsoft_EntityFrameworkCore_Query.ShapedQueryExpression ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal_ShapedQueryExpression : {})
|
|
850
|
+
);
|
|
851
|
+
|
|
852
|
+
interface __TsonicExtApplier_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal {
|
|
853
|
+
__tsonic_shape: unknown;
|
|
854
|
+
__tsonic_type: __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<this["__tsonic_shape"]>;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
export type ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<TShape> =
|
|
858
|
+
TShape extends null | undefined ? TShape
|
|
859
|
+
: TShape extends void ? void
|
|
860
|
+
: TShape & __TsonicWithExt<TShape, "Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal", __TsonicExtApplier_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal> & __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Extensions_Internal<TShape>;
|
|
861
|
+
|
|
862
|
+
// Generic helper type for extension methods in namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Internal
|
|
863
|
+
type __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<TShape> =
|
|
864
|
+
(
|
|
865
|
+
(TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Internal_IDiagnosticsLogger_1<T0> : {})
|
|
130
866
|
);
|
|
131
867
|
|
|
868
|
+
interface __TsonicExtApplier_Npgsql_EntityFrameworkCore_PostgreSQL_Internal {
|
|
869
|
+
__tsonic_shape: unknown;
|
|
870
|
+
__tsonic_type: __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<this["__tsonic_shape"]>;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
export type ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<TShape> =
|
|
874
|
+
TShape extends null | undefined ? TShape
|
|
875
|
+
: TShape extends void ? void
|
|
876
|
+
: TShape & __TsonicWithExt<TShape, "Npgsql.EntityFrameworkCore.PostgreSQL.Internal", __TsonicExtApplier_Npgsql_EntityFrameworkCore_PostgreSQL_Internal> & __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Internal<TShape>;
|
|
877
|
+
|
|
132
878
|
// Generic helper type for extension methods in namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Metadata
|
|
879
|
+
type __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata<TShape> =
|
|
880
|
+
(
|
|
881
|
+
(TShape extends Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_NpgsqlValueGenerationStrategy : {}) & (TShape extends System.Nullable_1<infer T0> ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_Nullable_1<T0> : {})
|
|
882
|
+
);
|
|
883
|
+
|
|
884
|
+
interface __TsonicExtApplier_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata {
|
|
885
|
+
__tsonic_shape: unknown;
|
|
886
|
+
__tsonic_type: __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata<this["__tsonic_shape"]>;
|
|
887
|
+
}
|
|
888
|
+
|
|
133
889
|
export type ExtensionMethods_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata<TShape> =
|
|
134
890
|
TShape extends null | undefined ? TShape
|
|
135
891
|
: TShape extends void ? void
|
|
136
|
-
: TShape &
|
|
137
|
-
(TShape extends Npgsql_EntityFrameworkCore_PostgreSQL_Metadata.NpgsqlValueGenerationStrategy ? __Ext_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_NpgsqlValueGenerationStrategy : {})
|
|
138
|
-
);
|
|
892
|
+
: TShape & __TsonicWithExt<TShape, "Npgsql.EntityFrameworkCore.PostgreSQL.Metadata", __TsonicExtApplier_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata> & __TsonicExtSurface_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata<TShape>;
|
|
139
893
|
|
|
140
894
|
// Generic helper type for extension methods in namespace: Npgsql.Internal
|
|
895
|
+
type __TsonicExtSurface_Npgsql_Internal<TShape> =
|
|
896
|
+
(
|
|
897
|
+
(TShape extends Npgsql_Internal.TypeInfoMapping ? __Ext_Npgsql_Internal_TypeInfoMapping : {})
|
|
898
|
+
);
|
|
899
|
+
|
|
900
|
+
interface __TsonicExtApplier_Npgsql_Internal {
|
|
901
|
+
__tsonic_shape: unknown;
|
|
902
|
+
__tsonic_type: __TsonicExtSurface_Npgsql_Internal<this["__tsonic_shape"]>;
|
|
903
|
+
}
|
|
904
|
+
|
|
141
905
|
export type ExtensionMethods_Npgsql_Internal<TShape> =
|
|
142
906
|
TShape extends null | undefined ? TShape
|
|
143
907
|
: TShape extends void ? void
|
|
144
|
-
: TShape &
|
|
145
|
-
(TShape extends Npgsql_Internal.TypeInfoMapping ? __Ext_Npgsql_Internal_TypeInfoMapping : {})
|
|
146
|
-
);
|
|
908
|
+
: TShape & __TsonicWithExt<TShape, "Npgsql.Internal", __TsonicExtApplier_Npgsql_Internal> & __TsonicExtSurface_Npgsql_Internal<TShape>;
|
|
147
909
|
|
|
148
910
|
// Generic helper type for extension methods in namespace: Npgsql.Replication
|
|
911
|
+
type __TsonicExtSurface_Npgsql_Replication<TShape> =
|
|
912
|
+
(
|
|
913
|
+
(TShape extends Npgsql_Replication.LogicalReplicationConnection ? __Ext_Npgsql_Replication_LogicalReplicationConnection : {})
|
|
914
|
+
);
|
|
915
|
+
|
|
916
|
+
interface __TsonicExtApplier_Npgsql_Replication {
|
|
917
|
+
__tsonic_shape: unknown;
|
|
918
|
+
__tsonic_type: __TsonicExtSurface_Npgsql_Replication<this["__tsonic_shape"]>;
|
|
919
|
+
}
|
|
920
|
+
|
|
149
921
|
export type ExtensionMethods_Npgsql_Replication<TShape> =
|
|
150
922
|
TShape extends null | undefined ? TShape
|
|
151
923
|
: TShape extends void ? void
|
|
152
|
-
: TShape &
|
|
153
|
-
(TShape extends Npgsql_Replication.LogicalReplicationConnection ? __Ext_Npgsql_Replication_LogicalReplicationConnection : {})
|
|
154
|
-
);
|
|
924
|
+
: TShape & __TsonicWithExt<TShape, "Npgsql.Replication", __TsonicExtApplier_Npgsql_Replication> & __TsonicExtSurface_Npgsql_Replication<TShape>;
|
|
155
925
|
|
|
156
926
|
// Generic helper type for extension methods in namespace: Npgsql.Replication.Internal
|
|
927
|
+
type __TsonicExtSurface_Npgsql_Replication_Internal<TShape> =
|
|
928
|
+
(
|
|
929
|
+
(TShape extends Npgsql_Replication.LogicalReplicationConnection ? __Ext_Npgsql_Replication_Internal_LogicalReplicationConnection : {})
|
|
930
|
+
);
|
|
931
|
+
|
|
932
|
+
interface __TsonicExtApplier_Npgsql_Replication_Internal {
|
|
933
|
+
__tsonic_shape: unknown;
|
|
934
|
+
__tsonic_type: __TsonicExtSurface_Npgsql_Replication_Internal<this["__tsonic_shape"]>;
|
|
935
|
+
}
|
|
936
|
+
|
|
157
937
|
export type ExtensionMethods_Npgsql_Replication_Internal<TShape> =
|
|
158
938
|
TShape extends null | undefined ? TShape
|
|
159
939
|
: TShape extends void ? void
|
|
160
|
-
: TShape &
|
|
161
|
-
(TShape extends Npgsql_Replication.LogicalReplicationConnection ? __Ext_Npgsql_Replication_Internal_LogicalReplicationConnection : {})
|
|
162
|
-
);
|
|
940
|
+
: TShape & __TsonicWithExt<TShape, "Npgsql.Replication.Internal", __TsonicExtApplier_Npgsql_Replication_Internal> & __TsonicExtSurface_Npgsql_Replication_Internal<TShape>;
|
|
163
941
|
|