@tsonic/efcore 10.0.5 → 10.0.8

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.
Files changed (38) hide show
  1. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +599 -529
  2. package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +193 -155
  3. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +385 -291
  4. package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +123 -103
  5. package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +22 -10
  6. package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +443 -261
  7. package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +66 -42
  8. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +215 -145
  9. package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
  10. package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +140 -122
  11. package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1139 -1035
  12. package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +510 -476
  13. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +363 -307
  14. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +13 -7
  15. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +25 -21
  16. package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1557 -1305
  17. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +91 -67
  18. package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +78 -74
  19. package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +271 -207
  20. package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +22 -20
  21. package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +389 -241
  22. package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +354 -267
  23. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +188 -120
  24. package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +21 -15
  25. package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +93 -73
  26. package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +357 -239
  27. package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +51 -35
  28. package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +85 -25
  29. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +137 -43
  30. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
  31. package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +92 -68
  32. package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +121 -91
  33. package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +53 -23
  34. package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
  35. package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
  36. package/System.Transactions/internal/index.d.ts +3 -3
  37. package/__internal/extensions/index.d.ts +1462 -1465
  38. package/package.json +4 -4
@@ -38,6 +38,9 @@ import * as System_Transactions from "../../System.Transactions/internal/index.j
38
38
  // Import primitive type aliases
39
39
  import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
40
40
 
41
+ // Import sticky extension scope helper
42
+ import type { Rewrap } from '@tsonic/core/lang.js';
43
+
41
44
  // Import CLR type aliases for generic type arguments
42
45
  import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
43
46
 
@@ -45,2038 +48,2032 @@ import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
45
48
  import type { ptr } from '@tsonic/core/types.js';
46
49
 
47
50
  export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracker {
48
- ToDebugString(options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
51
+ ToDebugString(options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): Rewrap<this, string>;
49
52
  }
50
53
 
51
54
  export interface __Ext_Microsoft_EntityFrameworkCore_DbFunctions {
52
- Like(matchExpression: string, pattern: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
53
- Like(matchExpression: string, pattern: string, escapeCharacter: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
54
- Random(): ExtensionMethods_Microsoft_EntityFrameworkCore<double>;
55
- Collate<TProperty>(operand: TProperty, collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<TProperty>;
56
- Least<T>(...values: T[]): ExtensionMethods_Microsoft_EntityFrameworkCore<T>;
57
- Greatest<T>(...values: T[]): ExtensionMethods_Microsoft_EntityFrameworkCore<T>;
55
+ Like(matchExpression: string, pattern: string): Rewrap<this, boolean>;
56
+ Like(matchExpression: string, pattern: string, escapeCharacter: string): Rewrap<this, boolean>;
57
+ Random(): Rewrap<this, double>;
58
+ Collate<TProperty>(operand: TProperty, collation: string): Rewrap<this, TProperty>;
59
+ Least<T>(...values: T[]): Rewrap<this, T>;
60
+ Greatest<T>(...values: T[]): Rewrap<this, T>;
58
61
  }
59
62
 
60
63
  export interface __Ext_Microsoft_EntityFrameworkCore_DbSet_1<TEntity> {
61
- FromSqlRaw(sql: string, ...parameters: unknown[]): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<TEntity>>;
62
- FromSqlInterpolated(sql: System.FormattableString): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<TEntity>>;
63
- FromSql(sql: System.FormattableString): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<TEntity>>;
64
+ FromSqlRaw(sql: string, ...parameters: unknown[]): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
65
+ FromSqlInterpolated(sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
66
+ FromSql(sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
64
67
  }
65
68
 
66
69
  export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade {
67
- GetMigrations(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
68
- GetAppliedMigrations(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
69
- GetAppliedMigrationsAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
70
- GetPendingMigrations(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
71
- GetPendingMigrationsAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
72
- Migrate(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
73
- Migrate(targetMigration: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
74
- MigrateAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
75
- MigrateAsync(targetMigration: string, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
76
- ExecuteSqlRaw(sql: string, ...parameters: unknown[]): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
77
- ExecuteSqlInterpolated(sql: System.FormattableString): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
78
- ExecuteSql(sql: System.FormattableString): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
79
- ExecuteSqlRaw(sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
80
- SqlQueryRaw<TResult>(sql: string, ...parameters: unknown[]): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<TResult>>;
81
- SqlQuery<TResult>(sql: System.FormattableString): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<TResult>>;
82
- ExecuteSqlInterpolatedAsync(sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
83
- ExecuteSqlAsync(sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
84
- ExecuteSqlRawAsync(sql: string, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
85
- ExecuteSqlRawAsync(sql: string, ...parameters: unknown[]): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
86
- ExecuteSqlRawAsync(sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
87
- GetDbConnection(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Data_Common.DbConnection>;
88
- SetDbConnection(connection: System_Data_Common.DbConnection, contextOwnsConnection?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
89
- GetConnectionString(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
90
- SetConnectionString(connectionString: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
91
- OpenConnection(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
92
- OpenConnectionAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
93
- CloseConnection(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
94
- CloseConnectionAsync(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
95
- BeginTransaction(isolationLevel: System_Data.IsolationLevel): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>;
96
- BeginTransactionAsync(isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>>;
97
- UseTransaction(transaction: System_Data_Common.DbTransaction): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
98
- UseTransaction(transaction: System_Data_Common.DbTransaction, transactionId: System.Guid): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
99
- UseTransactionAsync(transaction: System_Data_Common.DbTransaction, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
100
- UseTransactionAsync(transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
101
- SetCommandTimeout(timeout: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
102
- SetCommandTimeout(timeout: System.TimeSpan): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
103
- GetCommandTimeout(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
104
- GenerateCreateScript(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
105
- IsRelational(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
106
- HasPendingModelChanges(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
70
+ GetMigrations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
71
+ GetAppliedMigrations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
72
+ GetAppliedMigrationsAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
73
+ GetPendingMigrations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
74
+ GetPendingMigrationsAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
75
+ Migrate(): Rewrap<this, void>;
76
+ Migrate(targetMigration: string): Rewrap<this, void>;
77
+ MigrateAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
78
+ MigrateAsync(targetMigration: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
79
+ ExecuteSqlRaw(sql: string, ...parameters: unknown[]): Rewrap<this, int>;
80
+ ExecuteSqlInterpolated(sql: System.FormattableString): Rewrap<this, int>;
81
+ ExecuteSql(sql: System.FormattableString): Rewrap<this, int>;
82
+ ExecuteSqlRaw(sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>): Rewrap<this, int>;
83
+ SqlQueryRaw<TResult>(sql: string, ...parameters: unknown[]): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
84
+ SqlQuery<TResult>(sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
85
+ ExecuteSqlInterpolatedAsync(sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
86
+ ExecuteSqlAsync(sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
87
+ ExecuteSqlRawAsync(sql: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
88
+ ExecuteSqlRawAsync(sql: string, ...parameters: unknown[]): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
89
+ ExecuteSqlRawAsync(sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
90
+ GetDbConnection(): Rewrap<this, System_Data_Common.DbConnection>;
91
+ SetDbConnection(connection: System_Data_Common.DbConnection, contextOwnsConnection?: boolean): Rewrap<this, void>;
92
+ GetConnectionString(): Rewrap<this, string | undefined>;
93
+ SetConnectionString(connectionString: string): Rewrap<this, void>;
94
+ OpenConnection(): Rewrap<this, void>;
95
+ OpenConnectionAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
96
+ CloseConnection(): Rewrap<this, void>;
97
+ CloseConnectionAsync(): Rewrap<this, System_Threading_Tasks.Task>;
98
+ BeginTransaction(isolationLevel: System_Data.IsolationLevel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>;
99
+ BeginTransactionAsync(isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>>;
100
+ UseTransaction(transaction: System_Data_Common.DbTransaction): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
101
+ UseTransaction(transaction: System_Data_Common.DbTransaction, transactionId: System.Guid): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
102
+ UseTransactionAsync(transaction: System_Data_Common.DbTransaction, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
103
+ UseTransactionAsync(transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
104
+ SetCommandTimeout(timeout: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
105
+ SetCommandTimeout(timeout: System.TimeSpan): Rewrap<this, void>;
106
+ GetCommandTimeout(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
107
+ GenerateCreateScript(): Rewrap<this, string>;
108
+ IsRelational(): Rewrap<this, boolean>;
109
+ HasPendingModelChanges(): Rewrap<this, boolean>;
107
110
  }
108
111
 
109
112
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder {
110
- ToJson(jsonColumnName?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
111
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
112
- HasColumnType(columnType: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
113
+ ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
114
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
115
+ HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
113
116
  }
114
117
 
115
118
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<TComplex> {
116
- ToJson(jsonColumnName?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
117
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
118
- HasColumnType(columnType: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
119
+ ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
120
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
121
+ HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
119
122
  }
120
123
 
121
124
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder {
122
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder>;
125
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder>;
123
126
  }
124
127
 
125
128
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<TProperty> {
126
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<TProperty>>;
129
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<TProperty>>;
127
130
  }
128
131
 
129
132
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder {
130
- ToJson(jsonColumnName?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
131
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
132
- HasColumnType(columnType: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
133
+ ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
134
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
135
+ HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
133
136
  }
134
137
 
135
138
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<TComplex> {
136
- ToJson(jsonColumnName?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
137
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
138
- HasColumnType(columnType: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
139
+ ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
140
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
141
+ HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
139
142
  }
140
143
 
141
144
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder {
142
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
143
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
144
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
145
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
146
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
147
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
148
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
149
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
150
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
151
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
152
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
153
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
154
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
155
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
145
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
146
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
147
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
148
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
149
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
150
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
151
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
152
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
153
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
154
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
155
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
156
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
157
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
158
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
156
159
  }
157
160
 
158
161
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<TProperty> {
159
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
160
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
161
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
162
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
163
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
164
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
165
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
166
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
167
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
168
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
169
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
170
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
171
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
172
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
162
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
163
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
164
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
165
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
166
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
167
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
168
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
169
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
170
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
171
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
172
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
173
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
174
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
175
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
173
176
  }
174
177
 
175
178
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder {
176
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
177
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
178
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
179
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
180
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
181
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
182
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
183
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
184
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
185
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
186
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
187
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
188
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
189
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
179
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
180
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
181
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
182
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
183
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
184
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
185
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
186
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
187
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
188
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
189
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
190
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
191
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
192
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
190
193
  }
191
194
 
192
195
  export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<TProperty> {
193
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
194
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
195
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
196
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
197
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
198
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
199
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
200
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
201
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
202
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
203
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
204
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
205
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
206
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
196
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
197
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
198
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
199
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
200
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
201
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
202
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
203
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
204
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
205
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
206
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
207
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
208
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
209
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
207
210
  }
208
211
 
209
212
  export interface __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder {
210
- HasStoreType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
211
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
213
+ HasStoreType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
214
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
212
215
  }
213
216
 
214
217
  export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder {
215
- UseTpcMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
216
- UseTphMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
217
- UseTptMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
218
- ToSqlQuery(query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
219
- ToFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
220
- ToFunction(function_: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
221
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
222
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
223
- HasCheckConstraint(name: string, sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
224
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
225
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
226
- ToTable(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
227
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
228
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
229
- ToTable(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
230
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
231
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
232
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
233
- ToView(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
234
- ToView(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
235
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
236
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
237
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
238
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
239
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
240
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
241
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
242
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
243
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
244
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
245
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
246
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
247
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
218
+ UseTpcMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
219
+ UseTphMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
220
+ UseTptMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
221
+ ToSqlQuery(query: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
222
+ ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
223
+ ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
224
+ ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
225
+ ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
226
+ HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
227
+ HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
228
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
229
+ ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
230
+ ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
231
+ ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
232
+ ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
233
+ ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
234
+ SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
235
+ SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
236
+ ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
237
+ ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
238
+ ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
239
+ ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
240
+ SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
241
+ SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
242
+ UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
243
+ UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
244
+ UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
245
+ DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
246
+ DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
247
+ DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
248
+ InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
249
+ InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
250
+ InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
248
251
  }
249
252
 
250
253
  export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<TEntity> {
251
- UseTpcMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
252
- UseTphMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
253
- UseTptMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
254
- ToSqlQuery(query: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
255
- ToFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
256
- ToFunction(function_: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
257
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
258
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
259
- HasCheckConstraint(name: string, sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
260
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
261
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
262
- ToTable(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
263
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
264
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
265
- ToTable(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
266
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
267
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
268
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
269
- ToView(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
270
- ToView(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
271
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
272
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
273
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
274
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
275
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
276
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
277
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
278
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
279
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
280
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
281
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
282
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
283
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
254
+ UseTpcMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
255
+ UseTphMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
256
+ UseTptMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
257
+ ToSqlQuery(query: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
258
+ ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
259
+ ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
260
+ ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
261
+ ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
262
+ HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
263
+ HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
264
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
265
+ ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
266
+ ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
267
+ ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
268
+ ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
269
+ ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
270
+ SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
271
+ SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
272
+ ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
273
+ ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
274
+ ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
275
+ ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
276
+ SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
277
+ SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
278
+ UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
279
+ UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
280
+ UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
281
+ DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
282
+ DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
283
+ DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
284
+ InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
285
+ InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
286
+ InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
284
287
  }
285
288
 
286
289
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder {
287
- HasStoreType(typeName: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
288
- CanSetStoreType(typeName: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
289
- IsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
290
- CanSetFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
290
+ HasStoreType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
291
+ CanSetStoreType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
292
+ IsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
293
+ CanSetFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
291
294
  }
292
295
 
293
296
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder {
294
- UseMappingStrategy(strategy: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
295
- CanSetMappingStrategy(strategy: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
296
- ExcludeTableFromMigrations(excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
297
- CanExcludeTableFromMigrations(excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
298
- ToSqlQuery(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
299
- CanSetSqlQuery(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
300
- ToFunction(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
301
- ToFunction(function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
302
- CanSetFunction(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
303
- CanSetFunction(function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
304
- HasCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionCheckConstraintBuilder | undefined>;
305
- CanHaveCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
306
- HasComment(comment: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
307
- CanSetComment(comment: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
308
- HasJsonPropertyName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
309
- CanSetJsonPropertyName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
310
- ToTable(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
311
- ToTable(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
312
- CanSetTable(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
313
- ToSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
314
- CanSetSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
315
- ToView(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
316
- ToView(name: string, schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
317
- CanSetView(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
318
- ToViewSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
319
- CanSetViewSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
320
- UpdateUsingStoredProcedure(fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
321
- DeleteUsingStoredProcedure(fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
322
- InsertUsingStoredProcedure(fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
297
+ UseMappingStrategy(strategy: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
298
+ CanSetMappingStrategy(strategy: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
299
+ ExcludeTableFromMigrations(excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
300
+ CanExcludeTableFromMigrations(excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
301
+ ToSqlQuery(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
302
+ CanSetSqlQuery(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
303
+ ToFunction(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
304
+ ToFunction(function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
305
+ CanSetFunction(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
306
+ CanSetFunction(function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
307
+ HasCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionCheckConstraintBuilder | undefined>;
308
+ CanHaveCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
309
+ HasComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
310
+ CanSetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
311
+ HasJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
312
+ CanSetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
313
+ ToTable(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
314
+ ToTable(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
315
+ CanSetTable(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
316
+ ToSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
317
+ CanSetSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
318
+ ToView(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
319
+ ToView(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
320
+ CanSetView(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
321
+ ToViewSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
322
+ CanSetViewSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
323
+ UpdateUsingStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
324
+ DeleteUsingStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
325
+ InsertUsingStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
323
326
  }
324
327
 
325
328
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder {
326
- HasConstraintName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder | undefined>;
327
- CanSetConstraintName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
329
+ HasConstraintName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder | undefined>;
330
+ CanSetConstraintName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
328
331
  }
329
332
 
330
333
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder {
331
- HasDatabaseName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
332
- CanSetDatabaseName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
333
- HasFilter(sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
334
- CanSetFilter(sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
334
+ HasDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
335
+ CanSetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
336
+ HasFilter(sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
337
+ CanSetFilter(sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
335
338
  }
336
339
 
337
340
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder {
338
- HasName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder | undefined>;
339
- CanSetName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
341
+ HasName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder | undefined>;
342
+ CanSetName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
340
343
  }
341
344
 
342
345
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder {
343
- HasSequence(name: string, schema?: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder>;
344
- HasDbFunction(methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
345
- HasDbFunction(name: string, returnType: System.Type, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
346
- HasDefaultSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
347
- CanSetDefaultSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
348
- HasMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
349
- CanSetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
350
- UseCollation(collation: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
351
- CanSetCollation(collation: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
346
+ HasSequence(name: string, schema?: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder>;
347
+ HasDbFunction(methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
348
+ HasDbFunction(name: string, returnType: System.Type, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
349
+ HasDefaultSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
350
+ CanSetDefaultSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
351
+ HasMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
352
+ CanSetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
353
+ UseCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
354
+ CanSetCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
352
355
  }
353
356
 
354
357
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder {
355
- HasColumnName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
356
- HasColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
357
- CanSetColumnName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
358
- CanSetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
359
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
360
- CanSetColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
361
- HasColumnType(typeName: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
362
- CanSetColumnType(typeName: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
363
- IsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
364
- CanSetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
365
- HasDefaultValueSql(sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
366
- CanSetDefaultValueSql(sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
367
- HasComputedColumnSql(sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
368
- IsStoredComputedColumn(stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
369
- CanSetComputedColumnSql(sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
370
- CanSetIsStoredComputedColumn(stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
371
- HasDefaultValue(value: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
372
- CanSetDefaultValue(value: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
373
- HasComment(comment: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
374
- CanSetComment(comment: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
375
- UseCollation(collation: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
376
- CanSetCollation(collation: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
377
- HasJsonPropertyName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
378
- CanSetJsonPropertyName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
358
+ HasColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
359
+ HasColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
360
+ CanSetColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
361
+ CanSetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
362
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
363
+ CanSetColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
364
+ HasColumnType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
365
+ CanSetColumnType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
366
+ IsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
367
+ CanSetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
368
+ HasDefaultValueSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
369
+ CanSetDefaultValueSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
370
+ HasComputedColumnSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
371
+ IsStoredComputedColumn(stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
372
+ CanSetComputedColumnSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
373
+ CanSetIsStoredComputedColumn(stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
374
+ HasDefaultValue(value: unknown, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
375
+ CanSetDefaultValue(value: unknown, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
376
+ HasComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
377
+ CanSetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
378
+ UseCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
379
+ CanSetCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
380
+ HasJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
381
+ CanSetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
379
382
  }
380
383
 
381
384
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder {
382
- HasDatabaseName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
383
- CanSetDatabaseName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
384
- HasTableName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
385
- CanSetTableName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
386
- HasTableSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
387
- CanSetTableSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
385
+ HasDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
386
+ CanSetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
387
+ HasTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
388
+ CanSetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
389
+ HasTableSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
390
+ CanSetTableSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
388
391
  }
389
392
 
390
393
  export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder {
391
- HasDatabaseName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
392
- HasName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
393
- HasFilter(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
394
+ HasDatabaseName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
395
+ HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
396
+ HasFilter(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
394
397
  }
395
398
 
396
399
  export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T> {
397
- HasDatabaseName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
398
- HasFilter(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
400
+ HasDatabaseName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
401
+ HasFilter(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
399
402
  }
400
403
 
401
404
  export interface __Ext_Microsoft_EntityFrameworkCore_KeyBuilder {
402
- HasName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder>;
405
+ HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder>;
403
406
  }
404
407
 
405
408
  export interface __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T> {
406
- HasName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<T>>;
409
+ HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<T>>;
407
410
  }
408
411
 
409
412
  export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder {
410
- ToFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
411
- ToFunction(function_: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
412
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
413
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
414
- HasCheckConstraint(name: string, sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
415
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
416
- ToTable(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
417
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
418
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
419
- ToTable(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
420
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
421
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
422
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
423
- ToView(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
424
- ToView(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
425
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
426
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
427
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
428
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
429
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
430
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
431
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
432
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
433
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
434
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
435
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
436
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
437
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
438
- ToJson(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
439
- ToJson(jsonColumnName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
440
- HasColumnType(columnType: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
441
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
413
+ ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
414
+ ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
415
+ ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
416
+ ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
417
+ HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
418
+ HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
419
+ ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
420
+ ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
421
+ ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
422
+ ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
423
+ ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
424
+ SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
425
+ SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
426
+ ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
427
+ ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
428
+ ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
429
+ ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
430
+ SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
431
+ SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
432
+ UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
433
+ UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
434
+ UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
435
+ DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
436
+ DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
437
+ DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
438
+ InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
439
+ InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
440
+ InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
441
+ ToJson(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
442
+ ToJson(jsonColumnName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
443
+ HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
444
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
442
445
  }
443
446
 
444
447
  export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity> {
445
- ToFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
446
- ToFunction(function_: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
447
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
448
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
449
- HasCheckConstraint(name: string, sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
450
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
451
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
452
- ToTable(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
453
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
454
- ToTable(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
455
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
456
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
457
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
458
- ToView(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
459
- ToView(name: string, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
460
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
461
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
462
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
463
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
464
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
465
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
466
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
467
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
468
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
469
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
470
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
471
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
472
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
473
- ToJson(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
474
- ToJson(jsonColumnName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
475
- HasColumnType(columnType: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
476
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
448
+ ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
449
+ ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
450
+ ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
451
+ ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
452
+ HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
453
+ HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
454
+ ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
455
+ ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
456
+ ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
457
+ ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
458
+ ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
459
+ SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
460
+ SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
461
+ ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
462
+ ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
463
+ ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
464
+ ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
465
+ SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
466
+ SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
467
+ UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
468
+ UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
469
+ UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
470
+ DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
471
+ DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
472
+ DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
473
+ InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
474
+ InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
475
+ InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
476
+ ToJson(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
477
+ ToJson(jsonColumnName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
478
+ HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
479
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
477
480
  }
478
481
 
479
482
  export interface __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder {
480
- HasConstraintName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder>;
483
+ HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder>;
481
484
  }
482
485
 
483
486
  export interface __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<TEntity, TDependentEntity> {
484
- HasConstraintName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<TEntity, TDependentEntity>>;
487
+ HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<TEntity, TDependentEntity>>;
485
488
  }
486
489
 
487
490
  export interface __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder {
488
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
489
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
490
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
491
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
492
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
493
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
494
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
495
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
496
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
497
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
498
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
499
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
500
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
501
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
491
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
492
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
493
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
494
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
495
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
496
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
497
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
498
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
499
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
500
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
501
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
502
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
503
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
504
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
502
505
  }
503
506
 
504
507
  export interface __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<TProperty> {
505
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
506
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
507
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
508
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
509
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
510
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
511
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
512
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
513
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
514
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
515
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
516
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
517
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
518
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
508
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
509
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
510
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
511
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
512
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
513
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
514
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
515
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
516
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
517
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
518
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
519
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
520
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
521
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
519
522
  }
520
523
 
521
524
  export interface __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder {
522
- HaveColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
523
- AreFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
524
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
525
+ HaveColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
526
+ AreFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
527
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
525
528
  }
526
529
 
527
530
  export interface __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<TProperty> {
528
- HaveColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
529
- AreFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
530
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
531
+ HaveColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
532
+ AreFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
533
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
531
534
  }
532
535
 
533
536
  export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder {
534
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
535
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
536
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
537
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
538
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
539
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
540
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
541
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
542
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
543
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
544
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
545
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
546
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
547
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
537
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
538
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
539
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
540
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
541
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
542
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
543
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
544
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
545
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
546
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
547
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
548
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
549
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
550
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
548
551
  }
549
552
 
550
553
  export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<TProperty> {
551
- HasColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
552
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
553
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
554
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
555
- HasDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
556
- HasDefaultValueSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
557
- HasComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
558
- HasComputedColumnSql(sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
559
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
560
- HasDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
561
- HasDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
562
- HasComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
563
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
564
- HasJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
554
+ HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
555
+ HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
556
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
557
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
558
+ HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
559
+ HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
560
+ HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
561
+ HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
562
+ HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
563
+ HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
564
+ HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
565
+ HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
566
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
567
+ HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
565
568
  }
566
569
 
567
570
  export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder {
568
- HasConstraintName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder>;
571
+ HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder>;
569
572
  }
570
573
 
571
574
  export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity> {
572
- HasConstraintName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity>>;
575
+ HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity>>;
573
576
  }
574
577
 
575
578
  export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder {
576
- HasConstraintName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder>;
579
+ HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder>;
577
580
  }
578
581
 
579
582
  export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<TEntity, TRelatedEntity> {
580
- HasConstraintName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>>;
583
+ HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>>;
581
584
  }
582
585
 
583
586
  export interface __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder {
584
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
585
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
587
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
588
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
586
589
  }
587
590
 
588
591
  export interface __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<TProperty> {
589
- HasColumnType(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TProperty>>;
590
- IsFixedLength(fixedLength?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TProperty>>;
592
+ HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TProperty>>;
593
+ IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TProperty>>;
591
594
  }
592
595
 
593
596
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty {
594
- SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
595
- GetJsonPropertyNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
597
+ SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
598
+ GetJsonPropertyNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
596
599
  }
597
600
 
598
601
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionElementType {
599
- SetStoreType(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
600
- GetStoreTypeConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
601
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
602
- GetIsFixedLengthConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
602
+ SetStoreType(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
603
+ GetStoreTypeConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
604
+ SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
605
+ GetIsFixedLengthConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
603
606
  }
604
607
 
605
608
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
606
- SetTableName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
607
- GetTableNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
608
- SetSchema(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
609
- GetSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
610
- SetViewName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
611
- GetViewNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
612
- SetViewSchema(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
613
- GetViewSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
614
- SetSqlQuery(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
615
- GetSqlQueryConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
616
- SetFunctionName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
617
- GetFunctionNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
618
- GetDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
619
- SetDeleteStoredProcedure(fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
620
- RemoveDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
621
- GetDeleteStoredProcedureConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
622
- GetInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
623
- SetInsertStoredProcedure(fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
624
- RemoveInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
625
- GetInsertStoredProcedureConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
626
- GetUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
627
- SetUpdateStoredProcedure(fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
628
- RemoveUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
629
- GetUpdateStoredProcedureConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
630
- FindCheckConstraint(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
631
- AddCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>;
632
- RemoveCheckConstraint(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
633
- GetCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
634
- GetDeclaredCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
635
- SetComment(comment: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
636
- GetCommentConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
637
- GetMappingFragments(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
638
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
639
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
640
- GetOrCreateMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>;
641
- RemoveMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
642
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey>>;
643
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
644
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
645
- GetIsTableExcludedFromMigrationsConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
646
- GetIsTableExcludedFromMigrationsConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
647
- SetMappingStrategy(strategy: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
648
- GetMappingStrategyConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
649
- SetContainerColumnTypeMapping(typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
650
- GetContainerColumnTypeMappingConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
651
- SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
652
- GetJsonPropertyNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
609
+ SetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
610
+ GetTableNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
611
+ SetSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
612
+ GetSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
613
+ SetViewName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
614
+ GetViewNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
615
+ SetViewSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
616
+ GetViewSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
617
+ SetSqlQuery(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
618
+ GetSqlQueryConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
619
+ SetFunctionName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
620
+ GetFunctionNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
621
+ GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
622
+ SetDeleteStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
623
+ RemoveDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
624
+ GetDeleteStoredProcedureConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
625
+ GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
626
+ SetInsertStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
627
+ RemoveInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
628
+ GetInsertStoredProcedureConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
629
+ GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
630
+ SetUpdateStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
631
+ RemoveUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
632
+ GetUpdateStoredProcedureConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
633
+ FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
634
+ AddCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>;
635
+ RemoveCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
636
+ GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
637
+ GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
638
+ SetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
639
+ GetCommentConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
640
+ GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
641
+ GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
642
+ FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
643
+ GetOrCreateMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>;
644
+ RemoveMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
645
+ FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey>>;
646
+ SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
647
+ SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
648
+ GetIsTableExcludedFromMigrationsConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
649
+ GetIsTableExcludedFromMigrationsConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
650
+ SetMappingStrategy(strategy: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
651
+ GetMappingStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
652
+ SetContainerColumnTypeMapping(typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
653
+ GetContainerColumnTypeMappingConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
654
+ SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
655
+ GetJsonPropertyNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
653
656
  }
654
657
 
655
658
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey {
656
- SetConstraintName(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
657
- GetConstraintNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
658
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
659
+ SetConstraintName(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
660
+ GetConstraintNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
661
+ FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
659
662
  }
660
663
 
661
664
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
662
- SetDatabaseName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
663
- GetDatabaseNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
664
- SetFilter(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
665
- GetFilterConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
666
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionIndex | undefined>;
665
+ SetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
666
+ GetDatabaseNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
667
+ SetFilter(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
668
+ GetFilterConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
669
+ FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionIndex | undefined>;
667
670
  }
668
671
 
669
672
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionKey {
670
- SetName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
671
- GetNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
672
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionKey | undefined>;
673
+ SetName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
674
+ GetNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
675
+ FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionKey | undefined>;
673
676
  }
674
677
 
675
678
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
676
- SetDefaultSchema(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
677
- GetDefaultSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
678
- SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
679
- GetMaxIdentifierLengthConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
680
- FindSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
681
- AddSequence(name: string, schema?: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
682
- RemoveSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
683
- GetSequences(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionSequence>>;
684
- FindDbFunction(method: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
685
- FindDbFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
686
- AddDbFunction(methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
687
- AddDbFunction(name: string, returnType: System.Type, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
688
- RemoveDbFunction(method: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
689
- RemoveDbFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
690
- GetDbFunctions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>>;
691
- SetCollation(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
692
- GetCollationConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
693
- UseNamedDefaultConstraints(value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
694
- UseNamedDefaultConstraintsConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
679
+ SetDefaultSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
680
+ GetDefaultSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
681
+ SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
682
+ GetMaxIdentifierLengthConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
683
+ FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
684
+ AddSequence(name: string, schema?: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
685
+ RemoveSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
686
+ GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionSequence>>;
687
+ FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
688
+ FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
689
+ AddDbFunction(methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
690
+ AddDbFunction(name: string, returnType: System.Type, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
691
+ RemoveDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
692
+ RemoveDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
693
+ GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>>;
694
+ SetCollation(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
695
+ GetCollationConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
696
+ UseNamedDefaultConstraints(value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
697
+ UseNamedDefaultConstraintsConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
695
698
  }
696
699
 
697
700
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
698
- SetColumnName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
699
- SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
700
- GetColumnNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
701
- GetColumnNameConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
702
- SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
703
- GetColumnOrderConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
704
- SetColumnType(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
705
- GetColumnTypeConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
706
- SetDefaultValueSql(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
707
- GetDefaultValueSqlConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
708
- SetComputedColumnSql(value: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
709
- GetComputedColumnSqlConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
710
- SetIsStored(value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
711
- GetIsStoredConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
712
- SetDefaultValue(value: unknown, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<unknown | undefined>;
713
- GetDefaultValueConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
714
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
715
- GetIsFixedLengthConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
716
- SetComment(comment: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
717
- GetCommentConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
718
- SetCollation(collation: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
719
- GetCollationConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
720
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionProperty | undefined>;
721
- GetOverrides(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>>;
722
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
723
- GetOrCreateOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>;
724
- RemoveOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
725
- SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
726
- GetJsonPropertyNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
727
- SetDefaultConstraintName(defaultConstraintName: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
728
- GetDefaultConstraintNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
701
+ SetColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
702
+ SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
703
+ GetColumnNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
704
+ GetColumnNameConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
705
+ SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
706
+ GetColumnOrderConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
707
+ SetColumnType(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
708
+ GetColumnTypeConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
709
+ SetDefaultValueSql(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
710
+ GetDefaultValueSqlConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
711
+ SetComputedColumnSql(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
712
+ GetComputedColumnSqlConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
713
+ SetIsStored(value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
714
+ GetIsStoredConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
715
+ SetDefaultValue(value: unknown, fromDataAnnotation?: boolean): Rewrap<this, unknown | undefined>;
716
+ GetDefaultValueConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
717
+ SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
718
+ GetIsFixedLengthConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
719
+ SetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
720
+ GetCommentConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
721
+ SetCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
722
+ GetCollationConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
723
+ FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionProperty | undefined>;
724
+ GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>>;
725
+ FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
726
+ GetOrCreateOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>;
727
+ RemoveOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
728
+ SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
729
+ GetJsonPropertyNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
730
+ SetDefaultConstraintName(defaultConstraintName: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
731
+ GetDefaultConstraintNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
729
732
  }
730
733
 
731
734
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger {
732
- SetDatabaseName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
733
- GetDatabaseNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
734
- SetTableName(name: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
735
- GetTableNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
736
- SetTableSchema(schema: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
737
- GetTableSchemaConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
735
+ SetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
736
+ GetDatabaseNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
737
+ SetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
738
+ GetTableNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
739
+ SetTableSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
740
+ GetTableSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
738
741
  }
739
742
 
740
743
  export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase {
741
- SetContainerColumnName(columnName: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
742
- GetContainerColumnNameConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
743
- SetContainerColumnType(columnType: string, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
744
- GetContainerColumnTypeConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
744
+ SetContainerColumnName(columnName: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
745
+ GetContainerColumnNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
746
+ SetContainerColumnType(columnType: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
747
+ GetContainerColumnTypeConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
745
748
  }
746
749
 
747
750
  export interface __Ext_Microsoft_EntityFrameworkCore_IElementType {
748
- GetStoreType(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
751
+ GetStoreType(): Rewrap<this, string>;
749
752
  }
750
753
 
751
754
  export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
752
- GetDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
753
- GetInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
754
- GetUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
755
- FindCheckConstraint(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint | undefined>;
756
- GetCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
757
- GetDeclaredCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
758
- GetMappingFragments(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
759
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
760
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
761
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
755
+ GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
756
+ GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
757
+ GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
758
+ FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint | undefined>;
759
+ GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
760
+ GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
761
+ GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
762
+ GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
763
+ FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
764
+ FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
762
765
  }
763
766
 
764
767
  export interface __Ext_Microsoft_EntityFrameworkCore_IForeignKey {
765
- GetMappedConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKeyConstraint>>;
766
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IForeignKey | undefined>;
768
+ GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKeyConstraint>>;
769
+ FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IForeignKey | undefined>;
767
770
  }
768
771
 
769
772
  export interface __Ext_Microsoft_EntityFrameworkCore_IIndex {
770
- GetMappedTableIndexes(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableIndex>>;
771
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IIndex | undefined>;
773
+ GetMappedTableIndexes(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableIndex>>;
774
+ FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IIndex | undefined>;
772
775
  }
773
776
 
774
777
  export interface __Ext_Microsoft_EntityFrameworkCore_IKey {
775
- GetMappedConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IUniqueConstraint>>;
776
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IKey | undefined>;
778
+ GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IUniqueConstraint>>;
779
+ FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IKey | undefined>;
777
780
  }
778
781
 
779
782
  export interface __Ext_Microsoft_EntityFrameworkCore_IModel {
780
- GetRelationalModel(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IRelationalModel>;
781
- FindSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
782
- GetSequences(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISequence>>;
783
- FindDbFunction(method: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
784
- FindDbFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
785
- GetDbFunctions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IDbFunction>>;
783
+ GetRelationalModel(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalModel>;
784
+ FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
785
+ GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISequence>>;
786
+ FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
787
+ FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
788
+ GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IDbFunction>>;
786
789
  }
787
790
 
788
791
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty {
789
- SetJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
792
+ SetJsonPropertyName(name: string): Rewrap<this, void>;
790
793
  }
791
794
 
792
795
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableElementType {
793
- SetStoreType(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
794
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
796
+ SetStoreType(value: string): Rewrap<this, void>;
797
+ SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
795
798
  }
796
799
 
797
800
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
798
- SetTableName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
799
- SetSchema(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
800
- SetViewName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
801
- SetViewSchema(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
802
- SetSqlQuery(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
803
- SetFunctionName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
804
- GetDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
805
- SetDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
806
- RemoveDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
807
- GetInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
808
- SetInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
809
- RemoveInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
810
- GetUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
811
- SetUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
812
- RemoveUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
813
- FindCheckConstraint(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
814
- AddCheckConstraint(name: string, sql: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>;
815
- RemoveCheckConstraint(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
816
- GetCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
817
- GetDeclaredCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
818
- SetComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
819
- GetMappingFragments(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
820
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
821
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
822
- GetOrCreateMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>;
823
- RemoveMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
824
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey>>;
825
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
826
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
827
- SetMappingStrategy(strategy: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
828
- SetContainerColumnTypeMapping(typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
829
- SetJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
801
+ SetTableName(name: string): Rewrap<this, void>;
802
+ SetSchema(value: string): Rewrap<this, void>;
803
+ SetViewName(name: string): Rewrap<this, void>;
804
+ SetViewSchema(value: string): Rewrap<this, void>;
805
+ SetSqlQuery(name: string): Rewrap<this, void>;
806
+ SetFunctionName(name: string): Rewrap<this, void>;
807
+ GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
808
+ SetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
809
+ RemoveDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
810
+ GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
811
+ SetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
812
+ RemoveInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
813
+ GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
814
+ SetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
815
+ RemoveUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
816
+ FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
817
+ AddCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>;
818
+ RemoveCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
819
+ GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
820
+ GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
821
+ SetComment(comment: string): Rewrap<this, void>;
822
+ GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
823
+ GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
824
+ FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
825
+ GetOrCreateMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>;
826
+ RemoveMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
827
+ FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey>>;
828
+ SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
829
+ SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
830
+ SetMappingStrategy(strategy: string): Rewrap<this, void>;
831
+ SetContainerColumnTypeMapping(typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping): Rewrap<this, void>;
832
+ SetJsonPropertyName(name: string): Rewrap<this, void>;
830
833
  }
831
834
 
832
835
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey {
833
- SetConstraintName(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
834
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey | undefined>;
836
+ SetConstraintName(value: string): Rewrap<this, void>;
837
+ FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey | undefined>;
835
838
  }
836
839
 
837
840
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableIndex {
838
- SetDatabaseName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
839
- SetFilter(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
840
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableIndex | undefined>;
841
+ SetDatabaseName(name: string): Rewrap<this, void>;
842
+ SetFilter(value: string): Rewrap<this, void>;
843
+ FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableIndex | undefined>;
841
844
  }
842
845
 
843
846
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableKey {
844
- SetName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
845
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableKey | undefined>;
847
+ SetName(name: string): Rewrap<this, void>;
848
+ FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableKey | undefined>;
846
849
  }
847
850
 
848
851
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
849
- SetDefaultSchema(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
850
- SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
851
- FindSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
852
- AddSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>;
853
- RemoveSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
854
- GetSequences(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>>;
855
- FindDbFunction(method: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
856
- FindDbFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
857
- AddDbFunction(methodInfo: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
858
- AddDbFunction(name: string, returnType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
859
- RemoveDbFunction(method: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
860
- RemoveDbFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
861
- GetDbFunctions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>>;
862
- SetCollation(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
863
- UseNamedDefaultConstraints(value: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
852
+ SetDefaultSchema(value: string): Rewrap<this, void>;
853
+ SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
854
+ FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
855
+ AddSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>;
856
+ RemoveSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
857
+ GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>>;
858
+ FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
859
+ FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
860
+ AddDbFunction(methodInfo: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
861
+ AddDbFunction(name: string, returnType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
862
+ RemoveDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
863
+ RemoveDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
864
+ GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>>;
865
+ SetCollation(value: string): Rewrap<this, void>;
866
+ UseNamedDefaultConstraints(value: boolean): Rewrap<this, void>;
864
867
  }
865
868
 
866
869
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
867
- SetColumnName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
868
- SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
869
- SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
870
- SetColumnType(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
871
- SetDefaultValueSql(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
872
- SetComputedColumnSql(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
873
- SetIsStored(value: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
874
- SetDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
875
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
876
- SetComment(comment: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
877
- SetCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
878
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableProperty | undefined>;
879
- GetOverrides(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>>;
880
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
881
- GetOrCreateOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>;
882
- RemoveOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
883
- SetJsonPropertyName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
884
- SetDefaultConstraintName(defaultConstraintName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
870
+ SetColumnName(name: string): Rewrap<this, void>;
871
+ SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
872
+ SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
873
+ SetColumnType(value: string): Rewrap<this, void>;
874
+ SetDefaultValueSql(value: string): Rewrap<this, void>;
875
+ SetComputedColumnSql(value: string): Rewrap<this, void>;
876
+ SetIsStored(value: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
877
+ SetDefaultValue(value: unknown): Rewrap<this, void>;
878
+ SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
879
+ SetComment(comment: string): Rewrap<this, void>;
880
+ SetCollation(collation: string): Rewrap<this, void>;
881
+ FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableProperty | undefined>;
882
+ GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>>;
883
+ FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
884
+ GetOrCreateOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>;
885
+ RemoveOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
886
+ SetJsonPropertyName(name: string): Rewrap<this, void>;
887
+ SetDefaultConstraintName(defaultConstraintName: string): Rewrap<this, void>;
885
888
  }
886
889
 
887
890
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger {
888
- SetDatabaseName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
889
- SetTableName(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
890
- SetTableSchema(schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
891
+ SetDatabaseName(name: string): Rewrap<this, void>;
892
+ SetTableName(name: string): Rewrap<this, void>;
893
+ SetTableSchema(schema: string): Rewrap<this, void>;
891
894
  }
892
895
 
893
896
  export interface __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase {
894
- SetContainerColumnName(columnName: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
895
- SetContainerColumnType(columnType: string): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
897
+ SetContainerColumnName(columnName: string): Rewrap<this, void>;
898
+ SetContainerColumnType(columnType: string): Rewrap<this, void>;
896
899
  }
897
900
 
898
901
  export interface __Ext_Microsoft_EntityFrameworkCore_IProperty {
899
- GetColumnType(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
900
- GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
901
- GetDefaultColumnMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMappingBase>>;
902
- GetTableColumnMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMapping>>;
903
- GetViewColumnMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewColumnMapping>>;
904
- GetSqlQueryColumnMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryColumnMapping>>;
905
- GetFunctionColumnMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionColumnMapping>>;
906
- GetInsertStoredProcedureResultColumnMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
907
- GetInsertStoredProcedureParameterMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
908
- GetDeleteStoredProcedureParameterMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
909
- GetUpdateStoredProcedureResultColumnMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
910
- GetUpdateStoredProcedureParameterMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
911
- FindColumn(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IColumnBase | undefined>;
912
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
913
- GetOverrides(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides>>;
914
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides | undefined>;
915
- GetReaderFieldValue(relationalReader: Microsoft_EntityFrameworkCore_Storage.RelationalDataReader, ordinal: int, detailedErrorsEnabled: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<unknown | undefined>;
902
+ GetColumnType(): Rewrap<this, string>;
903
+ GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
904
+ GetDefaultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMappingBase>>;
905
+ GetTableColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMapping>>;
906
+ GetViewColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewColumnMapping>>;
907
+ GetSqlQueryColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryColumnMapping>>;
908
+ GetFunctionColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionColumnMapping>>;
909
+ GetInsertStoredProcedureResultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
910
+ GetInsertStoredProcedureParameterMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
911
+ GetDeleteStoredProcedureParameterMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
912
+ GetUpdateStoredProcedureResultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
913
+ GetUpdateStoredProcedureParameterMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
914
+ FindColumn(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IColumnBase | undefined>;
915
+ FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
916
+ GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides>>;
917
+ FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides | undefined>;
918
+ GetReaderFieldValue(relationalReader: Microsoft_EntityFrameworkCore_Storage.RelationalDataReader, ordinal: int, detailedErrorsEnabled: boolean): Rewrap<this, unknown | undefined>;
916
919
  }
917
920
 
918
921
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty {
919
- GetJsonPropertyName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
922
+ GetJsonPropertyName(): Rewrap<this, string | undefined>;
920
923
  }
921
924
 
922
925
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType {
923
- GetStoreType(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
924
- IsFixedLength(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
925
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
926
- GetRelationalTypeMapping(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
927
- FindRelationalTypeMapping(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
926
+ GetStoreType(): Rewrap<this, string | undefined>;
927
+ IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
928
+ IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
929
+ GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
930
+ FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
928
931
  }
929
932
 
930
933
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
931
- GetTableName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
932
- GetDefaultTableName(truncate?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
933
- GetSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
934
- GetDefaultSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
935
- GetSchemaQualifiedTableName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
936
- GetSchemaQualifiedViewName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
937
- GetViewName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
938
- GetDefaultViewName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
939
- GetViewSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
940
- GetDefaultViewSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
941
- GetDefaultSqlQueryName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
942
- GetSqlQuery(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
943
- GetFunctionName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
944
- GetDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
945
- GetInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
946
- GetUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
947
- FindCheckConstraint(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint | undefined>;
948
- GetCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
949
- GetDeclaredCheckConstraints(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
950
- GetComment(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
951
- GetMappingFragments(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
952
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
953
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
954
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey>>;
955
- IsTableExcludedFromMigrations(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
956
- IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
957
- GetMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
958
- IsMappedToJson(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
959
- GetContainerColumnTypeMapping(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
960
- GetJsonPropertyName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
934
+ GetTableName(): Rewrap<this, string | undefined>;
935
+ GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
936
+ GetSchema(): Rewrap<this, string | undefined>;
937
+ GetDefaultSchema(): Rewrap<this, string | undefined>;
938
+ GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
939
+ GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
940
+ GetViewName(): Rewrap<this, string | undefined>;
941
+ GetDefaultViewName(): Rewrap<this, string | undefined>;
942
+ GetViewSchema(): Rewrap<this, string | undefined>;
943
+ GetDefaultViewSchema(): Rewrap<this, string | undefined>;
944
+ GetDefaultSqlQueryName(): Rewrap<this, string>;
945
+ GetSqlQuery(): Rewrap<this, string | undefined>;
946
+ GetFunctionName(): Rewrap<this, string | undefined>;
947
+ GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
948
+ GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
949
+ GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
950
+ FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint | undefined>;
951
+ GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
952
+ GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
953
+ GetComment(): Rewrap<this, string | undefined>;
954
+ GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
955
+ GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
956
+ FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
957
+ FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey>>;
958
+ IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
959
+ IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
960
+ GetMappingStrategy(): Rewrap<this, string | undefined>;
961
+ IsMappedToJson(): Rewrap<this, boolean>;
962
+ GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
963
+ GetJsonPropertyName(): Rewrap<this, string | undefined>;
961
964
  }
962
965
 
963
966
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey {
964
- GetConstraintName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
965
- GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
966
- GetDefaultName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
967
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
968
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
969
- IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
967
+ GetConstraintName(): Rewrap<this, string | undefined>;
968
+ GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
969
+ GetDefaultName(): Rewrap<this, string | undefined>;
970
+ GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
971
+ FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
972
+ IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
970
973
  }
971
974
 
972
975
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex {
973
- GetDatabaseName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
974
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
975
- GetDefaultDatabaseName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
976
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
977
- GetFilter(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
978
- GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
979
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex | undefined>;
976
+ GetDatabaseName(): Rewrap<this, string | undefined>;
977
+ GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
978
+ GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
979
+ GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
980
+ GetFilter(): Rewrap<this, string | undefined>;
981
+ GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
982
+ FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex | undefined>;
980
983
  }
981
984
 
982
985
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey {
983
- GetName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
984
- GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
985
- GetDefaultName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
986
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
987
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
986
+ GetName(): Rewrap<this, string | undefined>;
987
+ GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
988
+ GetDefaultName(): Rewrap<this, string | undefined>;
989
+ GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
990
+ FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
988
991
  }
989
992
 
990
993
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel {
991
- GetDefaultSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
992
- GetMaxIdentifierLength(): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
993
- FindSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
994
- GetSequences(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence>>;
995
- FindDbFunction(method: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
996
- FindDbFunction(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
997
- GetDbFunctions(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction>>;
998
- GetCollation(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
999
- AreNamedDefaultConstraintsUsed(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
994
+ GetDefaultSchema(): Rewrap<this, string | undefined>;
995
+ GetMaxIdentifierLength(): Rewrap<this, int>;
996
+ FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
997
+ GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence>>;
998
+ FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
999
+ FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
1000
+ GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction>>;
1001
+ GetCollation(): Rewrap<this, string | undefined>;
1002
+ AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
1000
1003
  }
1001
1004
 
1002
1005
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty {
1003
- GetColumnBaseName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1004
- GetColumnName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1005
- GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1006
- GetDefaultColumnBaseName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1007
- GetDefaultColumnName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1008
- GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1009
- GetColumnOrder(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
1010
- GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
1011
- GetColumnType(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1012
- GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1013
- GetDefaultValueSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1014
- GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1015
- GetComputedColumnSql(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1016
- GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1017
- GetIsStored(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
1018
- GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
1019
- GetDefaultValue(): ExtensionMethods_Microsoft_EntityFrameworkCore<unknown | undefined>;
1020
- TryGetDefaultValue(defaultValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
1021
- GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<unknown | undefined>;
1022
- TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
1023
- GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
1024
- GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
1025
- GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
1026
- IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
1027
- IsFixedLength(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
1028
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
1029
- IsColumnNullable(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
1030
- IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
1031
- GetComment(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1032
- GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1033
- GetCollation(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1034
- GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1035
- GetRelationalTypeMapping(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1036
- FindRelationalTypeMapping(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1037
- FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1038
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
1039
- GetOverrides(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides>>;
1040
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides | undefined>;
1041
- GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
1042
- GetJsonPropertyName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1043
- GetDefaultConstraintName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1044
- GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1045
- GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1006
+ GetColumnBaseName(): Rewrap<this, string>;
1007
+ GetColumnName(): Rewrap<this, string>;
1008
+ GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1009
+ GetDefaultColumnBaseName(): Rewrap<this, string>;
1010
+ GetDefaultColumnName(): Rewrap<this, string>;
1011
+ GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1012
+ GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1013
+ GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1014
+ GetColumnType(): Rewrap<this, string | undefined>;
1015
+ GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1016
+ GetDefaultValueSql(): Rewrap<this, string | undefined>;
1017
+ GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1018
+ GetComputedColumnSql(): Rewrap<this, string | undefined>;
1019
+ GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1020
+ GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1021
+ GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1022
+ GetDefaultValue(): Rewrap<this, unknown | undefined>;
1023
+ TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
1024
+ GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
1025
+ TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
1026
+ GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1027
+ GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1028
+ GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1029
+ IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1030
+ IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1031
+ IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1032
+ IsColumnNullable(): Rewrap<this, boolean>;
1033
+ IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1034
+ GetComment(): Rewrap<this, string | undefined>;
1035
+ GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1036
+ GetCollation(): Rewrap<this, string | undefined>;
1037
+ GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1038
+ GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1039
+ FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1040
+ FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1041
+ FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
1042
+ GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides>>;
1043
+ FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides | undefined>;
1044
+ GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
1045
+ GetJsonPropertyName(): Rewrap<this, string | undefined>;
1046
+ GetDefaultConstraintName(): Rewrap<this, string | undefined>;
1047
+ GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1048
+ GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1046
1049
  }
1047
1050
 
1048
1051
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger {
1049
- GetDatabaseName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1050
- GetDefaultDatabaseName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1051
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1052
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1053
- GetTableName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1054
- GetTableSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1052
+ GetDatabaseName(): Rewrap<this, string | undefined>;
1053
+ GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
1054
+ GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1055
+ GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1056
+ GetTableName(): Rewrap<this, string>;
1057
+ GetTableSchema(): Rewrap<this, string | undefined>;
1055
1058
  }
1056
1059
 
1057
1060
  export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase {
1058
- GetTableName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1059
- GetSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1060
- GetViewName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1061
- GetViewSchema(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1062
- GetSqlQuery(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1063
- GetFunctionName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1064
- GetDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1065
- GetInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1066
- GetUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1067
- GetMappingFragments(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1068
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1069
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
1070
- GetMappingStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1071
- IsMappedToJson(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
1072
- GetContainerColumnName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1073
- GetContainerColumnType(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1074
- GetJsonPropertyName(): ExtensionMethods_Microsoft_EntityFrameworkCore<string | undefined>;
1061
+ GetTableName(): Rewrap<this, string | undefined>;
1062
+ GetSchema(): Rewrap<this, string | undefined>;
1063
+ GetViewName(): Rewrap<this, string | undefined>;
1064
+ GetViewSchema(): Rewrap<this, string | undefined>;
1065
+ GetSqlQuery(): Rewrap<this, string | undefined>;
1066
+ GetFunctionName(): Rewrap<this, string | undefined>;
1067
+ GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1068
+ GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1069
+ GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1070
+ GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1071
+ GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1072
+ FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
1073
+ GetMappingStrategy(): Rewrap<this, string | undefined>;
1074
+ IsMappedToJson(): Rewrap<this, boolean>;
1075
+ GetContainerColumnName(): Rewrap<this, string | undefined>;
1076
+ GetContainerColumnType(): Rewrap<this, string | undefined>;
1077
+ GetJsonPropertyName(): Rewrap<this, string | undefined>;
1075
1078
  }
1076
1079
 
1077
1080
  export interface __Ext_Microsoft_EntityFrameworkCore_ITypeBase {
1078
- GetDefaultMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
1079
- GetTableMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMapping>>;
1080
- GetViewMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewMapping>>;
1081
- GetSqlQueryMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryMapping>>;
1082
- GetFunctionMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionMapping>>;
1083
- GetDeleteStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1084
- GetInsertStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1085
- GetUpdateStoredProcedure(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1086
- GetInsertStoredProcedureMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1087
- GetDeleteStoredProcedureMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1088
- GetUpdateStoredProcedureMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1089
- GetMappingFragments(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
1090
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
1091
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
1081
+ GetDefaultMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
1082
+ GetTableMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMapping>>;
1083
+ GetViewMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewMapping>>;
1084
+ GetSqlQueryMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryMapping>>;
1085
+ GetFunctionMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionMapping>>;
1086
+ GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1087
+ GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1088
+ GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1089
+ GetInsertStoredProcedureMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1090
+ GetDeleteStoredProcedureMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1091
+ GetUpdateStoredProcedureMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1092
+ GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
1093
+ GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
1094
+ FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
1092
1095
  }
1093
1096
 
1094
1097
  export interface __Ext_Microsoft_EntityFrameworkCore_ModelBuilder {
1095
- HasSequence(name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
1096
- HasSequence(name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
1097
- HasSequence(name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
1098
- HasSequence(type: System.Type, name: string, schema?: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
1099
- HasSequence(type: System.Type, name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
1100
- HasSequence(type: System.Type, name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
1101
- HasDbFunction(methodInfo: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
1102
- HasDbFunction<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_1<TResult>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
1103
- HasDbFunction(methodInfo: System_Reflection.MethodInfo, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
1104
- HasDefaultSchema(schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
1105
- UseCollation(collation: string): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.ModelBuilder>;
1098
+ HasSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
1099
+ HasSequence(name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1100
+ HasSequence(name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1101
+ HasSequence(type: System.Type, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
1102
+ HasSequence(type: System.Type, name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1103
+ HasSequence(type: System.Type, name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1104
+ HasDbFunction(methodInfo: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
1105
+ HasDbFunction<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_1<TResult>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
1106
+ HasDbFunction(methodInfo: System_Reflection.MethodInfo, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1107
+ HasDefaultSchema(schema: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1108
+ UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1106
1109
  }
1107
1110
 
1108
1111
  export interface __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<TEntity, TProperty> {
1109
- ThenInclude<TPreviousProperty, TProperty>(navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<TPreviousProperty, TProperty>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<TEntity, TProperty>>;
1112
+ ThenInclude<TPreviousProperty, TProperty>(navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<TPreviousProperty, TProperty>>): Rewrap<this, Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<TEntity, TProperty>>;
1110
1113
  }
1111
1114
 
1112
1115
  export interface __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase {
1113
- UnwrapJoin(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase>;
1116
+ UnwrapJoin(): Rewrap<this, Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase>;
1114
1117
  }
1115
1118
 
1116
1119
  export interface __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy {
1117
- Execute(operation: System.Action): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
1118
- Execute<TResult>(operation: System.Func_1<TResult>): ExtensionMethods_Microsoft_EntityFrameworkCore<TResult>;
1119
- Execute<TState>(state: TState, operation: System.Action_1<TState>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
1120
- ExecuteAsync(operation: System.Func_1<System_Threading_Tasks.Task>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1121
- ExecuteAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1122
- ExecuteAsync<TResult>(operation: System.Func_1<System_Threading_Tasks.Task_1<TResult>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1123
- ExecuteAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1124
- ExecuteAsync<TState>(state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1125
- ExecuteAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1126
- ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task_1<TResult>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1127
- Execute<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>): ExtensionMethods_Microsoft_EntityFrameworkCore<TResult>;
1128
- ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1129
- Execute<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>): ExtensionMethods_Microsoft_EntityFrameworkCore<TResult>;
1130
- ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1131
- ExecuteInTransaction(operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
1132
- ExecuteInTransactionAsync(operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1133
- ExecuteInTransactionAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1134
- ExecuteInTransaction<TResult>(operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<TResult>;
1135
- ExecuteInTransactionAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1136
- ExecuteInTransaction<TState>(state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
1137
- ExecuteInTransactionAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1138
- ExecuteInTransaction<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<TResult>;
1139
- ExecuteInTransactionAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1120
+ Execute(operation: System.Action): Rewrap<this, void>;
1121
+ Execute<TResult>(operation: System.Func_1<TResult>): Rewrap<this, TResult>;
1122
+ Execute<TState>(state: TState, operation: System.Action_1<TState>): Rewrap<this, void>;
1123
+ ExecuteAsync(operation: System.Func_1<System_Threading_Tasks.Task>): Rewrap<this, System_Threading_Tasks.Task>;
1124
+ ExecuteAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1125
+ ExecuteAsync<TResult>(operation: System.Func_1<System_Threading_Tasks.Task_1<TResult>>): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1126
+ ExecuteAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1127
+ ExecuteAsync<TState>(state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task>): Rewrap<this, System_Threading_Tasks.Task>;
1128
+ ExecuteAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1129
+ ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task_1<TResult>>): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1130
+ Execute<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>): Rewrap<this, TResult>;
1131
+ ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1132
+ Execute<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>): Rewrap<this, TResult>;
1133
+ ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1134
+ ExecuteInTransaction(operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>): Rewrap<this, void>;
1135
+ ExecuteInTransactionAsync(operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>): Rewrap<this, System_Threading_Tasks.Task>;
1136
+ ExecuteInTransactionAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1137
+ ExecuteInTransaction<TResult>(operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>): Rewrap<this, TResult>;
1138
+ ExecuteInTransactionAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1139
+ ExecuteInTransaction<TState>(state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): Rewrap<this, void>;
1140
+ ExecuteInTransactionAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1141
+ ExecuteInTransaction<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): Rewrap<this, TResult>;
1142
+ ExecuteInTransactionAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1140
1143
  }
1141
1144
 
1142
1145
  export interface __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> {
1143
- Format(includeTypes?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1146
+ Format(includeTypes?: boolean): Rewrap<this, string>;
1144
1147
  }
1145
1148
 
1146
1149
  export interface __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T> {
1147
- ToBindingList(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_ComponentModel.BindingList_1<T>>;
1150
+ ToBindingList(): Rewrap<this, System_ComponentModel.BindingList_1<T>>;
1148
1151
  }
1149
1152
 
1150
1153
  export interface __Ext_Microsoft_EntityFrameworkCore_IQueryable {
1151
- ToQueryString(): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
1152
- CreateDbCommand(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Data_Common.DbCommand>;
1154
+ ToQueryString(): Rewrap<this, string>;
1155
+ CreateDbCommand(): Rewrap<this, System_Data_Common.DbCommand>;
1153
1156
  }
1154
1157
 
1155
1158
  export interface __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T> {
1156
- AnyAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1157
- AnyAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1158
- AllAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1159
- CountAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1160
- CountAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1161
- LongCountAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1162
- LongCountAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1163
- ElementAtAsync(index: int, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1164
- ElementAtOrDefaultAsync(index: int, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T | undefined>>;
1165
- FirstAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1166
- FirstAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1167
- FirstOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T | undefined>>;
1168
- FirstOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T | undefined>>;
1169
- LastAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1170
- LastAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1171
- LastOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T | undefined>>;
1172
- LastOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T | undefined>>;
1173
- SingleAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1174
- SingleAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1175
- SingleOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T | undefined>>;
1176
- SingleOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T | undefined>>;
1177
- MinAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1178
- MinAsync<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, TResult>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1179
- MaxAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T>>;
1180
- MaxAsync<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, TResult>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<TResult>>;
1181
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1182
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1183
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1184
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1185
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1186
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
1187
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1188
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
1189
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1190
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
1191
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int64>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1192
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int64>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
1193
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Double>>;
1194
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1195
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Double>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Double>>;
1196
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Double>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1197
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Single>>;
1198
- SumAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1199
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Single>>;
1200
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1201
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1202
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1203
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1204
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1205
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Double>>;
1206
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1207
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Double>>;
1208
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1209
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Double>>;
1210
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1211
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Double>>;
1212
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1213
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Single>>;
1214
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1215
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Single>>;
1216
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1217
- ContainsAsync(item: T, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1218
- ToListAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.List_1<T>>>;
1219
- ToArrayAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<T[]>>;
1220
- ToHashSetAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<T>>>;
1221
- ToHashSetAsync(comparer: System_Collections_Generic.IEqualityComparer_1<T>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<T>>>;
1222
- Include<TProperty>(navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<T, TProperty>>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<T, TProperty>>;
1223
- Include(navigationPropertyPath: string): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1224
- IgnoreAutoIncludes(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1225
- IgnoreQueryFilters(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1226
- IgnoreQueryFilters(filterKeys: System_Collections_Generic.IReadOnlyCollection_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1227
- AsNoTracking(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1228
- AsNoTrackingWithIdentityResolution(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1229
- AsTracking(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1230
- AsTracking(track: Microsoft_EntityFrameworkCore.QueryTrackingBehavior): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1231
- TagWith(tag: string): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1232
- TagWithCallSite(filePath?: string, lineNumber?: int): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1233
- Load(): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
1234
- LoadAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1235
- ToDictionaryAsync<TKey>(keySelector: System.Func_2<T, TKey>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, T>>>;
1236
- ToDictionaryAsync<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, T>>>;
1237
- ToDictionaryAsync<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
1238
- ToDictionaryAsync<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
1239
- ForEachAsync(action: System.Action_1<T>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task>;
1240
- AsAsyncEnumerable(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Collections_Generic.IAsyncEnumerable_1<T>>;
1241
- ExecuteDelete(): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
1242
- ExecuteDeleteAsync(cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1243
- ExecuteUpdate(setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<T>>): ExtensionMethods_Microsoft_EntityFrameworkCore<int>;
1244
- ExecuteUpdateAsync(setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<T>>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1245
- AsSingleQuery(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1246
- AsSplitQuery(): ExtensionMethods_Microsoft_EntityFrameworkCore<System_Linq.IQueryable_1<T>>;
1159
+ AnyAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1160
+ AnyAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1161
+ AllAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1162
+ CountAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1163
+ CountAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1164
+ LongCountAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1165
+ LongCountAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1166
+ ElementAtAsync(index: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1167
+ ElementAtOrDefaultAsync(index: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1168
+ FirstAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1169
+ FirstAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1170
+ FirstOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1171
+ FirstOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1172
+ LastAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1173
+ LastAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1174
+ LastOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1175
+ LastOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1176
+ SingleAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1177
+ SingleAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1178
+ SingleOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1179
+ SingleOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1180
+ MinAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1181
+ MinAsync<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, TResult>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1182
+ MaxAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1183
+ MaxAsync<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, TResult>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1184
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1185
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1186
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1187
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1188
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1189
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
1190
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1191
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
1192
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1193
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
1194
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int64>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1195
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int64>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
1196
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1197
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1198
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Double>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1199
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Double>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1200
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1201
+ SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1202
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1203
+ SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1204
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1205
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1206
+ AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1207
+ AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1208
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1209
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1210
+ AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1211
+ AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1212
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1213
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1214
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1215
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1216
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1217
+ AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1218
+ AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1219
+ AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1220
+ ContainsAsync(item: T, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1221
+ ToListAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.List_1<T>>>;
1222
+ ToArrayAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T[]>>;
1223
+ ToHashSetAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<T>>>;
1224
+ ToHashSetAsync(comparer: System_Collections_Generic.IEqualityComparer_1<T>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<T>>>;
1225
+ Include<TProperty>(navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<T, TProperty>>): Rewrap<this, Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<T, TProperty>>;
1226
+ Include(navigationPropertyPath: string): Rewrap<this, System_Linq.IQueryable_1<T>>;
1227
+ IgnoreAutoIncludes(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1228
+ IgnoreQueryFilters(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1229
+ IgnoreQueryFilters(filterKeys: System_Collections_Generic.IReadOnlyCollection_1<System_Internal.String>): Rewrap<this, System_Linq.IQueryable_1<T>>;
1230
+ AsNoTracking(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1231
+ AsNoTrackingWithIdentityResolution(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1232
+ AsTracking(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1233
+ AsTracking(track: Microsoft_EntityFrameworkCore.QueryTrackingBehavior): Rewrap<this, System_Linq.IQueryable_1<T>>;
1234
+ TagWith(tag: string): Rewrap<this, System_Linq.IQueryable_1<T>>;
1235
+ TagWithCallSite(filePath?: string, lineNumber?: int): Rewrap<this, System_Linq.IQueryable_1<T>>;
1236
+ Load(): Rewrap<this, void>;
1237
+ LoadAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1238
+ ToDictionaryAsync<TKey>(keySelector: System.Func_2<T, TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, T>>>;
1239
+ ToDictionaryAsync<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, T>>>;
1240
+ ToDictionaryAsync<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
1241
+ ToDictionaryAsync<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
1242
+ ForEachAsync(action: System.Action_1<T>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1243
+ AsAsyncEnumerable(): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<T>>;
1244
+ ExecuteDelete(): Rewrap<this, int>;
1245
+ ExecuteDeleteAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1246
+ ExecuteUpdate(setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<T>>): Rewrap<this, int>;
1247
+ ExecuteUpdateAsync(setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<T>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1248
+ AsSingleQuery(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1249
+ AsSplitQuery(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1247
1250
  }
1248
1251
 
1249
1252
  export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer {
1250
- IsDefault(): ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking<boolean>;
1253
+ IsDefault(): Rewrap<this, boolean>;
1251
1254
  }
1252
1255
 
1253
1256
  export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager {
1254
- ToListForState(added?: boolean, modified?: boolean, deleted?: boolean, unchanged?: boolean, returnDeletedSharedIdentity?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1255
- ToList(): ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1257
+ ToListForState(added?: boolean, modified?: boolean, deleted?: boolean, unchanged?: boolean, returnDeletedSharedIdentity?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1258
+ ToList(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1256
1259
  }
1257
1260
 
1258
1261
  export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ValueComparer {
1259
- ToNullableComparer(clrType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1260
- ComposeConversion(targetClrType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1262
+ ToNullableComparer(clrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1263
+ ComposeConversion(targetClrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1261
1264
  }
1262
1265
 
1263
1266
  export interface __Ext_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1<TLoggerCategory> {
1264
- SaveChangesFailed(context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1265
- SaveChangesFailedAsync(context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1266
- SaveChangesCanceled(context: Microsoft_EntityFrameworkCore.DbContext): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1267
- SaveChangesCanceledAsync(context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1268
- OldModelVersionWarning(context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1269
- OptimisticConcurrencyException(context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1270
- OptimisticConcurrencyExceptionAsync(context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1271
- DuplicateDependentEntityTypeInstanceWarning(dependent1: Microsoft_EntityFrameworkCore_Metadata.IEntityType, dependent2: Microsoft_EntityFrameworkCore_Metadata.IEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1272
- QueryIterationFailed(contextType: System.Type, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1273
- QueryCanceled(contextType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1274
- QueryCompilationStarting(context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExpression: System_Linq_Expressions.Expression): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System.ValueTuple_2<System_Linq_Expressions.Expression, Microsoft_EntityFrameworkCore_Diagnostics.QueryExpressionEventData>>;
1275
- FirstWithoutOrderByAndFilterWarning(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1276
- RowLimitingOperationWithoutOrderByWarning(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1277
- DistinctAfterOrderByWithoutRowLimitingOperatorWarning(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1278
- NavigationBaseIncluded(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1279
- NavigationBaseIncludeIgnored(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1280
- QueryExecutionPlanned(context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExecutorExpression: System_Linq_Expressions.Expression): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1281
- SensitiveDataLoggingEnabledWarning(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1282
- TypeLoadingErrorWarning(assembly: System_Reflection.Assembly, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1283
- SkippedEntityTypeConfigurationWarning(type: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1284
- NoEntityTypeConfigurationsWarning(assembly: System_Reflection.Assembly): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1285
- PossibleUnintendedCollectionNavigationNullComparisonWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1286
- PossibleUnintendedReferenceComparisonWarning(left: System_Linq_Expressions.Expression, right: System_Linq_Expressions.Expression): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1287
- InvalidIncludePathError(navigationChain: string, navigationName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1288
- ServiceProviderCreated(serviceProvider: System.IServiceProvider): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1289
- ManyServiceProvidersCreatedWarning(serviceProviders: System_Collections_Generic.ICollection_1<System.IServiceProvider>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1290
- ServiceProviderDebugInfo(newDebugInfo: System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>, cachedDebugInfos: System_Collections_Generic.IList_1<System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1291
- ContextInitialized(context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1292
- ExecutionStrategyRetrying(exceptionsEncountered: System_Collections_Generic.IReadOnlyList_1<System.Exception>, delay: System.TimeSpan, async: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1293
- LazyLoadOnDisposedContextWarning(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1294
- NavigationLazyLoading(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1295
- DetachedLazyLoadingWarning(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1296
- RedundantAddServicesCallWarning(serviceProvider: System.IServiceProvider): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1297
- ShadowForeignKeyPropertyCreated(property: Microsoft_EntityFrameworkCore_Metadata.IProperty, basePropertyName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1298
- ShadowPropertyCreated(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1299
- CollectionWithoutComparer(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1300
- RedundantIndexRemoved(redundantIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, otherIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1301
- RedundantForeignKeyWarning(redundantForeignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1302
- IncompatibleMatchingForeignKeyProperties(dependentToPrincipalNavigationSpecification: string, principalToDependentNavigationSpecification: string, foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1303
- AccidentalEntityType(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1304
- AccidentalComplexPropertyCollection(complexProperty: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1305
- AmbiguousEndRequiredWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1306
- RequiredAttributeOnCollection(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1307
- RequiredAttributeOnSkipNavigation(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1308
- ConflictingShadowForeignKeysWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1309
- MultiplePrimaryKeyCandidates(firstProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, secondProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1310
- MultipleNavigationProperties(firstPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, secondPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1311
- MultipleInversePropertiesSameTargetWarning(conflictingNavigations: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, inverseNavigation: System_Reflection.MemberInfo, targetType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1312
- NonOwnershipInverseNavigationWarning(declaringType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, navigation: System_Reflection.MemberInfo, targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, inverseNavigation: System_Reflection.MemberInfo, ownershipNavigation: System_Reflection.MemberInfo): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1313
- ForeignKeyAttributesOnBothPropertiesWarning(firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, firstProperty: System_Reflection.MemberInfo, secondProperty: System_Reflection.MemberInfo): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1314
- ForeignKeyAttributesOnBothNavigationsWarning(firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1315
- ConflictingForeignKeyAttributesOnNavigationAndPropertyWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, property: System_Reflection.MemberInfo): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1316
- DetectChangesStarting(context: Microsoft_EntityFrameworkCore.DbContext): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1317
- DetectChangesCompleted(context: Microsoft_EntityFrameworkCore.DbContext): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1318
- PropertyChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1319
- PropertyChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1320
- ComplexElementPropertyChangeDetected(internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1321
- ComplexElementPropertyChangeDetectedSensitive(internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1322
- ForeignKeyChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1323
- ForeignKeyChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1324
- CollectionChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1325
- CollectionChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1326
- SkipCollectionChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1327
- SkipCollectionChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1328
- ReferenceChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1329
- ReferenceChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1330
- StringEnumValueInJson(enumType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1331
- StartedTracking(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1332
- StartedTrackingSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1333
- StateChanged(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1334
- StateChangedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1335
- ValueGenerated(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1336
- ValueGeneratedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1337
- CascadeDelete(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1338
- CascadeDeleteSensitive(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1339
- CascadeDeleteOrphan(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1340
- MappedNavigationIgnoredWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1341
- MappedPropertyIgnoredWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1342
- MappedComplexPropertyIgnoredWarning(property: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1343
- MappedEntityTypeIgnoredWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1344
- CascadeDeleteOrphanSensitive(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1345
- SaveChangesStarting(context: Microsoft_EntityFrameworkCore.DbContext): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>;
1346
- SaveChangesStartingAsync(context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>>;
1347
- SaveChangesCompleted(context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<int>;
1348
- SaveChangesCompletedAsync(context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<System_Internal.Int32>>;
1349
- ContextDisposed(context: Microsoft_EntityFrameworkCore.DbContext): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1350
- ConflictingKeylessAndKeyAttributesWarning(property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1351
- PossibleIncorrectRequiredNavigationWithQueryFilterInteractionWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1352
- TransactionStarting(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>;
1353
- TransactionStartingAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>>;
1354
- TransactionStarted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Data_Common.DbTransaction>;
1355
- TransactionStartedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1356
- TransactionUsed(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Data_Common.DbTransaction>;
1357
- TransactionUsedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1358
- TransactionCommitting(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1359
- TransactionCommittingAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1360
- TransactionCommitted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1361
- TransactionCommittedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1362
- TransactionRolledBack(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1363
- TransactionRolledBackAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1364
- TransactionRollingBack(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1365
- TransactionRollingBackAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1366
- CreatingTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1367
- CreatingTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1368
- CreatedTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1369
- CreatedTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1370
- RollingBackToTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1371
- RollingBackToTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1372
- RolledBackToTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1373
- RolledBackToTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1374
- ReleasingTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1375
- ReleasingTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1376
- ReleasedTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1377
- ReleasedTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1378
- TransactionDisposed(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1379
- TriggerOnNonRootTphEntity(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1380
- TransactionError(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1381
- TransactionErrorAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<System_Threading_Tasks.Task>;
1382
- AmbientTransactionWarning(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, startTime: System.DateTimeOffset): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1383
- AmbientTransactionEnlisted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1384
- ExplicitTransactionEnlisted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1385
- MigrateUsingConnection(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1386
- MigrationReverting(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1387
- MigrationApplying(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1388
- MigrationGeneratingDownScript(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1389
- MigrationGeneratingUpScript(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1390
- MigrationsNotApplied(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1391
- MigrationsNotFound(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1392
- MigrationAttributeMissingWarning(migrationType: System_Reflection.TypeInfo): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1393
- PendingModelChangesWarning(contextType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1394
- NonDeterministicModel(contextType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1395
- ModelSnapshotNotFound(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1396
- NonTransactionalMigrationOperationWarning(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, command: Microsoft_EntityFrameworkCore_Migrations.MigrationCommand): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1397
- AcquiringMigrationLock(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1398
- MigrationsUserTransactionWarning(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1399
- QueryPossibleUnintendedUseOfEqualsWarning(left: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, right: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1400
- ExecuteDeleteFailed(contextType: System.Type, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1401
- ExecuteUpdateFailed(contextType: System.Type, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1402
- NonQueryOperationFailed(contextType: System.Type, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1403
- MultipleCollectionIncludeWarning(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1404
- ModelValidationKeyDefaultValueWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1405
- BoolWithDefaultWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1406
- BatchReadyForExecution(entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1407
- BatchSmallerThanMinBatchSize(entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int, minBatchSize: int): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1408
- AllIndexPropertiesNotToMappedToAnyTable(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1409
- IndexPropertiesBothMappedAndNotMappedToTable(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, unmappedPropertyName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1410
- IndexPropertiesMappedToNonOverlappingTables(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, property1Name: string, tablesMappedToProperty1: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>, property2Name: string, tablesMappedToProperty2: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1411
- KeyPropertiesNotMappedToTable(key: Microsoft_EntityFrameworkCore_Metadata.IKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1412
- ForeignKeyPropertiesMappedToUnrelatedTables(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1413
- ForeignKeyTpcPrincipalWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1414
- TpcStoreGeneratedIdentityWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1415
- OptionalDependentWithoutIdentifyingPropertyWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1416
- StoredProcedureConcurrencyTokenNotMapped(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, concurrencyProperty: Microsoft_EntityFrameworkCore_Metadata.IProperty, storedProcedureName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1417
- BatchExecutorFailedToRollbackToSavepoint(contextType: System.Type, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1418
- BatchExecutorFailedToReleaseSavepoint(contextType: System.Type, exception: System.Exception): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1419
- OptionalDependentWithAllNullPropertiesWarning(entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1420
- OptionalDependentWithAllNullPropertiesWarningSensitive(entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1421
- DuplicateColumnOrders(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, columns: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1422
- ColumnOrderIgnoredWarning(operation: Microsoft_EntityFrameworkCore_Migrations_Operations.ColumnOperation): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1423
- UnexpectedTrailingResultSetWhenSaving(): ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<void>;
1267
+ SaveChangesFailed(context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception): Rewrap<this, void>;
1268
+ SaveChangesFailedAsync(context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1269
+ SaveChangesCanceled(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1270
+ SaveChangesCanceledAsync(context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1271
+ OldModelVersionWarning(context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): Rewrap<this, void>;
1272
+ OptimisticConcurrencyException(context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1273
+ OptimisticConcurrencyExceptionAsync(context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1274
+ DuplicateDependentEntityTypeInstanceWarning(dependent1: Microsoft_EntityFrameworkCore_Metadata.IEntityType, dependent2: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1275
+ QueryIterationFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1276
+ QueryCanceled(contextType: System.Type): Rewrap<this, void>;
1277
+ QueryCompilationStarting(context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExpression: System_Linq_Expressions.Expression): Rewrap<this, System.ValueTuple_2<System_Linq_Expressions.Expression, Microsoft_EntityFrameworkCore_Diagnostics.QueryExpressionEventData>>;
1278
+ FirstWithoutOrderByAndFilterWarning(): Rewrap<this, void>;
1279
+ RowLimitingOperationWithoutOrderByWarning(): Rewrap<this, void>;
1280
+ DistinctAfterOrderByWithoutRowLimitingOperatorWarning(): Rewrap<this, void>;
1281
+ NavigationBaseIncluded(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1282
+ NavigationBaseIncludeIgnored(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1283
+ QueryExecutionPlanned(context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExecutorExpression: System_Linq_Expressions.Expression): Rewrap<this, void>;
1284
+ SensitiveDataLoggingEnabledWarning(): Rewrap<this, void>;
1285
+ TypeLoadingErrorWarning(assembly: System_Reflection.Assembly, exception: System.Exception): Rewrap<this, void>;
1286
+ SkippedEntityTypeConfigurationWarning(type: System.Type): Rewrap<this, void>;
1287
+ NoEntityTypeConfigurationsWarning(assembly: System_Reflection.Assembly): Rewrap<this, void>;
1288
+ PossibleUnintendedCollectionNavigationNullComparisonWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation): Rewrap<this, void>;
1289
+ PossibleUnintendedReferenceComparisonWarning(left: System_Linq_Expressions.Expression, right: System_Linq_Expressions.Expression): Rewrap<this, void>;
1290
+ InvalidIncludePathError(navigationChain: string, navigationName: string): Rewrap<this, void>;
1291
+ ServiceProviderCreated(serviceProvider: System.IServiceProvider): Rewrap<this, void>;
1292
+ ManyServiceProvidersCreatedWarning(serviceProviders: System_Collections_Generic.ICollection_1<System.IServiceProvider>): Rewrap<this, void>;
1293
+ ServiceProviderDebugInfo(newDebugInfo: System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>, cachedDebugInfos: System_Collections_Generic.IList_1<System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>>): Rewrap<this, void>;
1294
+ ContextInitialized(context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): Rewrap<this, void>;
1295
+ ExecutionStrategyRetrying(exceptionsEncountered: System_Collections_Generic.IReadOnlyList_1<System.Exception>, delay: System.TimeSpan, async: boolean): Rewrap<this, void>;
1296
+ LazyLoadOnDisposedContextWarning(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1297
+ NavigationLazyLoading(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1298
+ DetachedLazyLoadingWarning(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1299
+ RedundantAddServicesCallWarning(serviceProvider: System.IServiceProvider): Rewrap<this, void>;
1300
+ ShadowForeignKeyPropertyCreated(property: Microsoft_EntityFrameworkCore_Metadata.IProperty, basePropertyName: string): Rewrap<this, void>;
1301
+ ShadowPropertyCreated(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1302
+ CollectionWithoutComparer(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1303
+ RedundantIndexRemoved(redundantIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, otherIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): Rewrap<this, void>;
1304
+ RedundantForeignKeyWarning(redundantForeignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1305
+ IncompatibleMatchingForeignKeyProperties(dependentToPrincipalNavigationSpecification: string, principalToDependentNavigationSpecification: string, foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): Rewrap<this, void>;
1306
+ AccidentalEntityType(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1307
+ AccidentalComplexPropertyCollection(complexProperty: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): Rewrap<this, void>;
1308
+ AmbiguousEndRequiredWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1309
+ RequiredAttributeOnCollection(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): Rewrap<this, void>;
1310
+ RequiredAttributeOnSkipNavigation(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation): Rewrap<this, void>;
1311
+ ConflictingShadowForeignKeysWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): Rewrap<this, void>;
1312
+ MultiplePrimaryKeyCandidates(firstProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, secondProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
1313
+ MultipleNavigationProperties(firstPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, secondPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>): Rewrap<this, void>;
1314
+ MultipleInversePropertiesSameTargetWarning(conflictingNavigations: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, inverseNavigation: System_Reflection.MemberInfo, targetType: System.Type): Rewrap<this, void>;
1315
+ NonOwnershipInverseNavigationWarning(declaringType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, navigation: System_Reflection.MemberInfo, targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, inverseNavigation: System_Reflection.MemberInfo, ownershipNavigation: System_Reflection.MemberInfo): Rewrap<this, void>;
1316
+ ForeignKeyAttributesOnBothPropertiesWarning(firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, firstProperty: System_Reflection.MemberInfo, secondProperty: System_Reflection.MemberInfo): Rewrap<this, void>;
1317
+ ForeignKeyAttributesOnBothNavigationsWarning(firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): Rewrap<this, void>;
1318
+ ConflictingForeignKeyAttributesOnNavigationAndPropertyWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, property: System_Reflection.MemberInfo): Rewrap<this, void>;
1319
+ DetectChangesStarting(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1320
+ DetectChangesCompleted(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1321
+ PropertyChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1322
+ PropertyChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1323
+ ComplexElementPropertyChangeDetected(internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1324
+ ComplexElementPropertyChangeDetectedSensitive(internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1325
+ ForeignKeyChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1326
+ ForeignKeyChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1327
+ CollectionChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1328
+ CollectionChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1329
+ SkipCollectionChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1330
+ SkipCollectionChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1331
+ ReferenceChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1332
+ ReferenceChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1333
+ StringEnumValueInJson(enumType: System.Type): Rewrap<this, void>;
1334
+ StartedTracking(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): Rewrap<this, void>;
1335
+ StartedTrackingSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): Rewrap<this, void>;
1336
+ StateChanged(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1337
+ StateChangedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1338
+ ValueGenerated(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): Rewrap<this, void>;
1339
+ ValueGeneratedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): Rewrap<this, void>;
1340
+ CascadeDelete(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1341
+ CascadeDeleteSensitive(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1342
+ CascadeDeleteOrphan(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1343
+ MappedNavigationIgnoredWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1344
+ MappedPropertyIgnoredWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1345
+ MappedComplexPropertyIgnoredWarning(property: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): Rewrap<this, void>;
1346
+ MappedEntityTypeIgnoredWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1347
+ CascadeDeleteOrphanSensitive(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1348
+ SaveChangesStarting(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>;
1349
+ SaveChangesStartingAsync(context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>>;
1350
+ SaveChangesCompleted(context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int): Rewrap<this, int>;
1351
+ SaveChangesCompletedAsync(context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Internal.Int32>>;
1352
+ ContextDisposed(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1353
+ ConflictingKeylessAndKeyAttributesWarning(property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
1354
+ PossibleIncorrectRequiredNavigationWithQueryFilterInteractionWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1355
+ TransactionStarting(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>;
1356
+ TransactionStartingAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>>;
1357
+ TransactionStarted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, System_Data_Common.DbTransaction>;
1358
+ TransactionStartedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1359
+ TransactionUsed(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, System_Data_Common.DbTransaction>;
1360
+ TransactionUsedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1361
+ TransactionCommitting(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1362
+ TransactionCommittingAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1363
+ TransactionCommitted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1364
+ TransactionCommittedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1365
+ TransactionRolledBack(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1366
+ TransactionRolledBackAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1367
+ TransactionRollingBack(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1368
+ TransactionRollingBackAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1369
+ CreatingTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1370
+ CreatingTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1371
+ CreatedTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1372
+ CreatedTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1373
+ RollingBackToTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1374
+ RollingBackToTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1375
+ RolledBackToTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1376
+ RolledBackToTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1377
+ ReleasingTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1378
+ ReleasingTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1379
+ ReleasedTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1380
+ ReleasedTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1381
+ TransactionDisposed(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1382
+ TriggerOnNonRootTphEntity(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1383
+ TransactionError(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1384
+ TransactionErrorAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1385
+ AmbientTransactionWarning(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, startTime: System.DateTimeOffset): Rewrap<this, void>;
1386
+ AmbientTransactionEnlisted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): Rewrap<this, void>;
1387
+ ExplicitTransactionEnlisted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): Rewrap<this, void>;
1388
+ MigrateUsingConnection(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection): Rewrap<this, void>;
1389
+ MigrationReverting(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): Rewrap<this, void>;
1390
+ MigrationApplying(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): Rewrap<this, void>;
1391
+ MigrationGeneratingDownScript(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): Rewrap<this, void>;
1392
+ MigrationGeneratingUpScript(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): Rewrap<this, void>;
1393
+ MigrationsNotApplied(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator): Rewrap<this, void>;
1394
+ MigrationsNotFound(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): Rewrap<this, void>;
1395
+ MigrationAttributeMissingWarning(migrationType: System_Reflection.TypeInfo): Rewrap<this, void>;
1396
+ PendingModelChangesWarning(contextType: System.Type): Rewrap<this, void>;
1397
+ NonDeterministicModel(contextType: System.Type): Rewrap<this, void>;
1398
+ ModelSnapshotNotFound(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): Rewrap<this, void>;
1399
+ NonTransactionalMigrationOperationWarning(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, command: Microsoft_EntityFrameworkCore_Migrations.MigrationCommand): Rewrap<this, void>;
1400
+ AcquiringMigrationLock(): Rewrap<this, void>;
1401
+ MigrationsUserTransactionWarning(): Rewrap<this, void>;
1402
+ QueryPossibleUnintendedUseOfEqualsWarning(left: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, right: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression): Rewrap<this, void>;
1403
+ ExecuteDeleteFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1404
+ ExecuteUpdateFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1405
+ NonQueryOperationFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1406
+ MultipleCollectionIncludeWarning(): Rewrap<this, void>;
1407
+ ModelValidationKeyDefaultValueWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1408
+ BoolWithDefaultWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1409
+ BatchReadyForExecution(entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int): Rewrap<this, void>;
1410
+ BatchSmallerThanMinBatchSize(entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int, minBatchSize: int): Rewrap<this, void>;
1411
+ AllIndexPropertiesNotToMappedToAnyTable(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex): Rewrap<this, void>;
1412
+ IndexPropertiesBothMappedAndNotMappedToTable(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, unmappedPropertyName: string): Rewrap<this, void>;
1413
+ IndexPropertiesMappedToNonOverlappingTables(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, property1Name: string, tablesMappedToProperty1: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>, property2Name: string, tablesMappedToProperty2: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>): Rewrap<this, void>;
1414
+ KeyPropertiesNotMappedToTable(key: Microsoft_EntityFrameworkCore_Metadata.IKey): Rewrap<this, void>;
1415
+ ForeignKeyPropertiesMappedToUnrelatedTables(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1416
+ ForeignKeyTpcPrincipalWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1417
+ TpcStoreGeneratedIdentityWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1418
+ OptionalDependentWithoutIdentifyingPropertyWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1419
+ StoredProcedureConcurrencyTokenNotMapped(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, concurrencyProperty: Microsoft_EntityFrameworkCore_Metadata.IProperty, storedProcedureName: string): Rewrap<this, void>;
1420
+ BatchExecutorFailedToRollbackToSavepoint(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1421
+ BatchExecutorFailedToReleaseSavepoint(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1422
+ OptionalDependentWithAllNullPropertiesWarning(entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): Rewrap<this, void>;
1423
+ OptionalDependentWithAllNullPropertiesWarningSensitive(entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): Rewrap<this, void>;
1424
+ DuplicateColumnOrders(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, columns: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): Rewrap<this, void>;
1425
+ ColumnOrderIgnoredWarning(operation: Microsoft_EntityFrameworkCore_Migrations_Operations.ColumnOperation): Rewrap<this, void>;
1426
+ UnexpectedTrailingResultSetWhenSaving(): Rewrap<this, void>;
1424
1427
  }
1425
1428
 
1426
1429
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1<T> {
1427
- GetService<TService>(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<TService>;
1428
- GetService(serviceType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<unknown>;
1429
- GetInfrastructure(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<T>;
1430
+ GetService<TService>(): Rewrap<this, TService>;
1431
+ GetService(serviceType: System.Type): Rewrap<this, unknown>;
1432
+ GetInfrastructure(): Rewrap<this, T>;
1430
1433
  }
1431
1434
 
1432
1435
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader {
1433
- Load<TRelated>(entity: unknown, navigationField: TRelated, navigationName?: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<TRelated | undefined>;
1436
+ Load<TRelated>(entity: unknown, navigationField: TRelated, navigationName?: string): Rewrap<this, TRelated | undefined>;
1434
1437
  }
1435
1438
 
1436
1439
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IModel {
1437
- GetRelationalDependencies(methodName?: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<Microsoft_EntityFrameworkCore_Infrastructure.RelationalModelDependencies>;
1440
+ GetRelationalDependencies(methodName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Infrastructure.RelationalModelDependencies>;
1438
1441
  }
1439
1442
 
1440
1443
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T> {
1441
- FormatColumns(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<string>;
1442
- GetColumnNames(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
1444
+ FormatColumns(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1445
+ GetColumnNames(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
1443
1446
  }
1444
1447
 
1445
1448
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Expression {
1446
- Print(characterLimit?: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<string>;
1447
- MakeMemberAccess(member: System_Reflection.MemberInfo): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Linq_Expressions.MemberExpression>;
1448
- CreateValueBufferReadValueExpression(type: System.Type, index: int, property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Linq_Expressions.Expression>;
1449
- CreateKeyValuesExpression(properties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, makeNullable?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Linq_Expressions.Expression>;
1450
- CreateEFPropertyExpression(property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase, makeNullable?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Linq_Expressions.Expression>;
1449
+ Print(characterLimit?: System.Nullable_1<System_Internal.Int32>): Rewrap<this, string>;
1450
+ MakeMemberAccess(member: System_Reflection.MemberInfo): Rewrap<this, System_Linq_Expressions.MemberExpression>;
1451
+ CreateValueBufferReadValueExpression(type: System.Type, index: int, property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, System_Linq_Expressions.Expression>;
1452
+ CreateKeyValuesExpression(properties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, makeNullable?: boolean): Rewrap<this, System_Linq_Expressions.Expression>;
1453
+ CreateEFPropertyExpression(property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase, makeNullable?: boolean): Rewrap<this, System_Linq_Expressions.Expression>;
1451
1454
  }
1452
1455
 
1453
1456
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_LambdaExpression {
1454
- GetPropertyAccess(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Reflection.PropertyInfo>;
1455
- GetMemberAccess(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Reflection.MemberInfo>;
1456
- GetPropertyAccessList(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Collections_Generic.IReadOnlyList_1<System_Reflection.PropertyInfo>>;
1457
- GetMemberAccessList(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Collections_Generic.IReadOnlyList_1<System_Reflection.MemberInfo>>;
1457
+ GetPropertyAccess(): Rewrap<this, System_Reflection.PropertyInfo>;
1458
+ GetMemberAccess(): Rewrap<this, System_Reflection.MemberInfo>;
1459
+ GetPropertyAccessList(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Reflection.PropertyInfo>>;
1460
+ GetMemberAccessList(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Reflection.MemberInfo>>;
1458
1461
  }
1459
1462
 
1460
1463
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MemberExpression {
1461
- Assign(valueExpression: System_Linq_Expressions.Expression): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<System_Linq_Expressions.Expression>;
1464
+ Assign(valueExpression: System_Linq_Expressions.Expression): Rewrap<this, System_Linq_Expressions.Expression>;
1462
1465
  }
1463
1466
 
1464
1467
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodCallExpression {
1465
- TryGetEFPropertyArguments(entityExpression: System_Linq_Expressions.Expression, propertyName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<boolean>;
1466
- TryGetIndexerArguments(model: Microsoft_EntityFrameworkCore_Metadata.IModel, entityExpression: System_Linq_Expressions.Expression, propertyName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<boolean>;
1468
+ TryGetEFPropertyArguments(entityExpression: System_Linq_Expressions.Expression, propertyName: string): Rewrap<this, boolean>;
1469
+ TryGetIndexerArguments(model: Microsoft_EntityFrameworkCore_Metadata.IModel, entityExpression: System_Linq_Expressions.Expression, propertyName: string): Rewrap<this, boolean>;
1467
1470
  }
1468
1471
 
1469
1472
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodInfo {
1470
- IsEFPropertyMethod(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<boolean>;
1473
+ IsEFPropertyMethod(): Rewrap<this, boolean>;
1471
1474
  }
1472
1475
 
1473
1476
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Type {
1474
- ShortDisplayName(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<string>;
1477
+ ShortDisplayName(): Rewrap<this, string>;
1475
1478
  }
1476
1479
 
1477
1480
  export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Internal_IDbContextOptions {
1478
- BuildOptionsFragment(): ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure_Internal<string>;
1481
+ BuildOptionsFragment(): Rewrap<this, string>;
1479
1482
  }
1480
1483
 
1481
1484
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_DbContext {
1482
- ConfigureConventions(configurationBuilder: Microsoft_EntityFrameworkCore.ModelConfigurationBuilder): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<void>;
1485
+ ConfigureConventions(configurationBuilder: Microsoft_EntityFrameworkCore.ModelConfigurationBuilder): Rewrap<this, void>;
1483
1486
  }
1484
1487
 
1485
1488
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_ICurrentDbContext {
1486
- GetDependencies(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1489
+ GetDependencies(): Rewrap<this, Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1487
1490
  }
1488
1491
 
1489
1492
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies {
1490
- GetDependencies(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1493
+ GetDependencies(): Rewrap<this, Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1491
1494
  }
1492
1495
 
1493
1496
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IEntityType {
1494
- IsAdHoc(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<boolean>;
1497
+ IsAdHoc(): Rewrap<this, boolean>;
1495
1498
  }
1496
1499
 
1497
1500
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IModel {
1498
- EnsureRelationalModel(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<void>;
1501
+ EnsureRelationalModel(): Rewrap<this, void>;
1499
1502
  }
1500
1503
 
1501
1504
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IReadOnlyTypeBase {
1502
- GetOwnedName(simpleName: string, ownershipNavigation: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<string>;
1503
- GetRuntimeProperties(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.PropertyInfo>>;
1504
- GetRuntimeFields(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.FieldInfo>>;
1505
+ GetOwnedName(simpleName: string, ownershipNavigation: string): Rewrap<this, string>;
1506
+ GetRuntimeProperties(): Rewrap<this, System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.PropertyInfo>>;
1507
+ GetRuntimeFields(): Rewrap<this, System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.FieldInfo>>;
1505
1508
  }
1506
1509
 
1507
1510
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_ITypeBase {
1508
- GetComplexProperty(name: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>;
1511
+ GetComplexProperty(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>;
1509
1512
  }
1510
1513
 
1511
1514
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_TypeBase {
1512
- DisplayName(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<string>;
1513
- ShortName(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<string>;
1515
+ DisplayName(): Rewrap<this, string>;
1516
+ ShortName(): Rewrap<this, string>;
1514
1517
  }
1515
1518
 
1516
1519
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_RelationalCommandResolver {
1517
- RentAndPopulateRelationalCommand(queryContext: Microsoft_EntityFrameworkCore_Query.RelationalQueryContext): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<Microsoft_EntityFrameworkCore_Storage.IRelationalCommand>;
1520
+ RentAndPopulateRelationalCommand(queryContext: Microsoft_EntityFrameworkCore_Query.RelationalQueryContext): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommand>;
1518
1521
  }
1519
1522
 
1520
1523
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T> {
1521
- FormatTables(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<string>;
1524
+ FormatTables(): Rewrap<this, string>;
1522
1525
  }
1523
1526
 
1524
1527
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_Expression {
1525
- MakeHasSentinel(propertyBase: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Linq_Expressions.Expression>;
1526
- MatchSimpleMemberAccess<TMemberInfo>(memberAccessExpression: System_Linq_Expressions.Expression): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<TMemberInfo | undefined>;
1527
- RemoveTypeAs(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Linq_Expressions.Expression | undefined>;
1528
- IsLogicalOperation(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<boolean>;
1529
- GetLambdaOrNull(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Linq_Expressions.LambdaExpression | undefined>;
1528
+ MakeHasSentinel(propertyBase: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase): Rewrap<this, System_Linq_Expressions.Expression>;
1529
+ MatchSimpleMemberAccess<TMemberInfo>(memberAccessExpression: System_Linq_Expressions.Expression): Rewrap<this, TMemberInfo | undefined>;
1530
+ RemoveTypeAs(): Rewrap<this, System_Linq_Expressions.Expression | undefined>;
1531
+ IsLogicalOperation(): Rewrap<this, boolean>;
1532
+ GetLambdaOrNull(): Rewrap<this, System_Linq_Expressions.LambdaExpression | undefined>;
1530
1533
  }
1531
1534
 
1532
1535
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_LambdaExpression {
1533
- MatchMemberAccessList<TMemberInfo>(memberMatcher: System.Func_3<System_Linq_Expressions.Expression, System_Linq_Expressions.Expression, TMemberInfo>): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Collections_Generic.IReadOnlyList_1<TMemberInfo> | undefined>;
1536
+ MatchMemberAccessList<TMemberInfo>(memberMatcher: System.Func_3<System_Linq_Expressions.Expression, System_Linq_Expressions.Expression, TMemberInfo>): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<TMemberInfo> | undefined>;
1534
1537
  }
1535
1538
 
1536
1539
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_UnaryExpression {
1537
- IsLogicalNot(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<boolean>;
1540
+ IsLogicalNot(): Rewrap<this, boolean>;
1538
1541
  }
1539
1542
 
1540
1543
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_MethodInfo {
1541
- MethodIsClosedFormOf(genericMethod: System_Reflection.MethodInfo): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<boolean>;
1542
- DisplayName(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<string>;
1544
+ MethodIsClosedFormOf(genericMethod: System_Reflection.MethodInfo): Rewrap<this, boolean>;
1545
+ DisplayName(): Rewrap<this, string>;
1543
1546
  }
1544
1547
 
1545
1548
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_Type {
1546
- IsDefaultValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<boolean>;
1547
- GetFieldInfo(fieldName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Reflection.FieldInfo | undefined>;
1548
- GenerateParameterName(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<string>;
1549
- FindIndexerProperty(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<System_Reflection.PropertyInfo | undefined>;
1549
+ IsDefaultValue(value: unknown): Rewrap<this, boolean>;
1550
+ GetFieldInfo(fieldName: string): Rewrap<this, System_Reflection.FieldInfo | undefined>;
1551
+ GenerateParameterName(): Rewrap<this, string>;
1552
+ FindIndexerProperty(): Rewrap<this, System_Reflection.PropertyInfo | undefined>;
1550
1553
  }
1551
1554
 
1552
1555
  export interface __Ext_Microsoft_EntityFrameworkCore_Internal_ValueTuple_2<T1, T2> {
1553
- FormatTable(): ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<string>;
1556
+ FormatTable(): Rewrap<this, string>;
1554
1557
  }
1555
1558
 
1556
1559
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_ConfigurationSource {
1557
- Overrides(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<boolean>;
1558
- OverridesStrictly(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<boolean>;
1559
- Max(right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>;
1560
+ Overrides(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1561
+ OverridesStrictly(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1562
+ Max(right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>;
1560
1563
  }
1561
1564
 
1562
1565
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Nullable_1<T> {
1563
- Overrides(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<boolean>;
1564
- OverridesStrictly(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<boolean>;
1565
- Max(right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1566
+ Overrides(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1567
+ OverridesStrictly(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1568
+ Max(right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1566
1569
  }
1567
1570
 
1568
1571
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal_IConventionBatch {
1569
- Run(relationshipBuilder: Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder | undefined>;
1572
+ Run(relationshipBuilder: Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder | undefined>;
1570
1573
  }
1571
1574
 
1572
1575
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty {
1573
- GetChainToComplexProperty(fromEntity: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>>;
1576
+ GetChainToComplexProperty(fromEntity: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>>;
1574
1577
  }
1575
1578
 
1576
1579
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType {
1577
- FindDeclaredOwnership(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
1578
- GetStoreObjectConfigurationSource(type: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1580
+ FindDeclaredOwnership(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
1581
+ GetStoreObjectConfigurationSource(type: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1579
1582
  }
1580
1583
 
1581
1584
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IEntityType {
1582
- FindDeclaredReferencingRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
1583
- GetNonPrincipalSharedNonPkProperties(table: Microsoft_EntityFrameworkCore_Metadata.ITableBase): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.List_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>>;
1585
+ FindDeclaredReferencingRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
1586
+ GetNonPrincipalSharedNonPkProperties(table: Microsoft_EntityFrameworkCore_Metadata.ITableBase): Rewrap<this, System_Collections_Generic.List_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>>;
1584
1587
  }
1585
1588
 
1586
1589
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IForeignKey {
1587
- GetPropertiesWithMinimalOverlapIfPossible(foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<void>;
1590
+ GetPropertiesWithMinimalOverlapIfPossible(foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>): Rewrap<this, void>;
1588
1591
  }
1589
1592
 
1590
1593
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IModel {
1591
- GetRootEntityTypes(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1592
- GetEntityTypesInHierarchicalOrder(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1593
- FindSameTypeNameWithDifferentNamespace(type: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1594
+ GetRootEntityTypes(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1595
+ GetEntityTypesInHierarchicalOrder(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1596
+ FindSameTypeNameWithDifferentNamespace(type: System.Type): Rewrap<this, string | undefined>;
1594
1597
  }
1595
1598
 
1596
1599
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IMutableModel {
1597
- SetProductVersion(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<void>;
1600
+ SetProductVersion(value: string): Rewrap<this, void>;
1598
1601
  }
1599
1602
 
1600
1603
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IProperty {
1601
- FindGenerationProperty(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
1602
- MayBeStoreGenerated(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1604
+ FindGenerationProperty(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
1605
+ MayBeStoreGenerated(): Rewrap<this, boolean>;
1603
1606
  }
1604
1607
 
1605
1608
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IPropertyBase {
1606
- GetShadowIndex(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<int>;
1607
- GetStoreGeneratedIndex(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<int>;
1608
- GetRelationshipIndex(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<int>;
1609
- GetOriginalValueIndex(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<int>;
1610
- GetPropertyIndexes(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyIndexes>;
1611
- GetPropertyAccessors(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyAccessors>;
1612
- TryGetMemberInfo(forMaterialization: boolean, forSet: boolean, memberInfo: System_Reflection.MemberInfo, errorMessage: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1609
+ GetShadowIndex(): Rewrap<this, int>;
1610
+ GetStoreGeneratedIndex(): Rewrap<this, int>;
1611
+ GetRelationshipIndex(): Rewrap<this, int>;
1612
+ GetOriginalValueIndex(): Rewrap<this, int>;
1613
+ GetPropertyIndexes(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyIndexes>;
1614
+ GetPropertyAccessors(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyAccessors>;
1615
+ TryGetMemberInfo(forMaterialization: boolean, forSet: boolean, memberInfo: System_Reflection.MemberInfo, errorMessage: string): Rewrap<this, boolean>;
1613
1616
  }
1614
1617
 
1615
1618
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyComplexProperty {
1616
- RequiresOriginalValue(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1619
+ RequiresOriginalValue(): Rewrap<this, boolean>;
1617
1620
  }
1618
1621
 
1619
1622
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType {
1620
- GetNavigationMemberInfo(navigationName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Reflection.MemberInfo>;
1621
- IsOwned(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1622
- FindDeclaredOwnership(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
1623
- FindInOwnershipPath(targetType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType | undefined>;
1624
- IsInOwnershipPath(targetType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1625
- IsInOwnershipPath(targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1626
- FindDeclaredPrimaryKey(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
1627
- FindDerivedNavigations(navigationName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1623
+ GetNavigationMemberInfo(navigationName: string): Rewrap<this, System_Reflection.MemberInfo>;
1624
+ IsOwned(): Rewrap<this, boolean>;
1625
+ FindDeclaredOwnership(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
1626
+ FindInOwnershipPath(targetType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType | undefined>;
1627
+ IsInOwnershipPath(targetType: System.Type): Rewrap<this, boolean>;
1628
+ IsInOwnershipPath(targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1629
+ FindDeclaredPrimaryKey(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
1630
+ FindDerivedNavigations(navigationName: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1628
1631
  }
1629
1632
 
1630
1633
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyForeignKey {
1631
- IsSelfReferencing(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1632
- GetNavigations(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1633
- FindNavigationsFrom(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1634
- FindNavigationsFromInHierarchy(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1635
- FindNavigationsTo(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1636
- FindNavigationsToInHierarchy(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1637
- AreCompatible(duplicateForeignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1638
- GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1639
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1634
+ IsSelfReferencing(): Rewrap<this, boolean>;
1635
+ GetNavigations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1636
+ FindNavigationsFrom(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1637
+ FindNavigationsFromInHierarchy(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1638
+ FindNavigationsTo(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1639
+ FindNavigationsToInHierarchy(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1640
+ AreCompatible(duplicateForeignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1641
+ GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1642
+ GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1640
1643
  }
1641
1644
 
1642
1645
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex {
1643
- AreCompatible(duplicateIndex: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1644
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1645
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1646
+ AreCompatible(duplicateIndex: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1647
+ GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1648
+ GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1646
1649
  }
1647
1650
 
1648
1651
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyKey {
1649
- IndexOf(property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<int>;
1650
- AreCompatible(duplicateKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1651
- GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1652
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1652
+ IndexOf(property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, int>;
1653
+ AreCompatible(duplicateKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1654
+ GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1655
+ GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1653
1656
  }
1654
1657
 
1655
1658
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyNavigation {
1656
- CreateMemberIdentity(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1659
+ CreateMemberIdentity(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1657
1660
  }
1658
1661
 
1659
1662
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyProperty {
1660
- FindFirstDifferentPrincipal(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
1661
- RequiresValueGenerator(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1662
- IsForeignKeyToSelf(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1663
- RequiresOriginalValue(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1664
- GetConfiguredColumnType(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string | undefined>;
1665
- IsOrdinalKeyProperty(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1663
+ FindFirstDifferentPrincipal(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
1664
+ RequiresValueGenerator(): Rewrap<this, boolean>;
1665
+ IsForeignKeyToSelf(): Rewrap<this, boolean>;
1666
+ RequiresOriginalValue(): Rewrap<this, boolean>;
1667
+ GetConfiguredColumnType(): Rewrap<this, string | undefined>;
1668
+ IsOrdinalKeyProperty(): Rewrap<this, boolean>;
1666
1669
  }
1667
1670
 
1668
1671
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyPropertyBase {
1669
- GetIdentifyingMemberInfo(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Reflection.MemberInfo | undefined>;
1672
+ GetIdentifyingMemberInfo(): Rewrap<this, System_Reflection.MemberInfo | undefined>;
1670
1673
  }
1671
1674
 
1672
1675
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlySkipNavigation {
1673
- CreateMemberIdentity(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1676
+ CreateMemberIdentity(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1674
1677
  }
1675
1678
 
1676
1679
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyTypeBase {
1677
- UseEagerSnapshots(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1678
- ShortNameChain(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<string>;
1679
- CheckContains<T>(property: T): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<T>;
1680
- IsMainFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1680
+ UseEagerSnapshots(): Rewrap<this, boolean>;
1681
+ ShortNameChain(): Rewrap<this, string>;
1682
+ CheckContains<T>(property: T): Rewrap<this, T>;
1683
+ IsMainFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1681
1684
  }
1682
1685
 
1683
1686
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ITypeBase {
1684
- GetViewOrTableMappings(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
1687
+ GetViewOrTableMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
1685
1688
  }
1686
1689
 
1687
1690
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_EntityType {
1688
- LeastDerivedType(otherEntityType: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType | undefined>;
1689
- IsAssignableFrom(otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1690
- IsStrictlyDerivedFrom(otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1691
- GetDiscriminatorValue(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<unknown | undefined>;
1691
+ LeastDerivedType(otherEntityType: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType | undefined>;
1692
+ IsAssignableFrom(otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1693
+ IsStrictlyDerivedFrom(otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1694
+ GetDiscriminatorValue(): Rewrap<this, unknown | undefined>;
1692
1695
  }
1693
1696
 
1694
1697
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType {
1695
- CalculateCounts(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyCounts>;
1698
+ CalculateCounts(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyCounts>;
1696
1699
  }
1697
1700
 
1698
1701
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Property {
1699
- IsKey(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1702
+ IsKey(): Rewrap<this, boolean>;
1700
1703
  }
1701
1704
 
1702
1705
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_PropertyBase {
1703
- IsShadowProperty(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1704
- IsIndexerProperty(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1706
+ IsShadowProperty(): Rewrap<this, boolean>;
1707
+ IsIndexerProperty(): Rewrap<this, boolean>;
1705
1708
  }
1706
1709
 
1707
1710
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeConfigurationType {
1708
- IsEntityType(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1711
+ IsEntityType(): Rewrap<this, boolean>;
1709
1712
  }
1710
1713
 
1711
1714
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ValueGenerated {
1712
- ForAdd(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1713
- ForUpdate(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<boolean>;
1715
+ ForAdd(): Rewrap<this, boolean>;
1716
+ ForUpdate(): Rewrap<this, boolean>;
1714
1717
  }
1715
1718
 
1716
1719
  export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Nullable_1<T> {
1717
- IsEntityType(): ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<System.Nullable_1<System_Internal.Boolean>>;
1720
+ IsEntityType(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1718
1721
  }
1719
1722
 
1720
1723
  export interface __Ext_Microsoft_EntityFrameworkCore_Migrations_IMigrationsAssembly {
1721
- GetMigrationId(nameOrId: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations<string>;
1724
+ GetMigrationId(nameOrId: string): Rewrap<this, string>;
1722
1725
  }
1723
1726
 
1724
1727
  export interface __Ext_Microsoft_EntityFrameworkCore_Migrations_Internal_Migration {
1725
- GetId(): ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations_Internal<string>;
1728
+ GetId(): Rewrap<this, string>;
1726
1729
  }
1727
1730
 
1728
1731
  export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IDbContextTransaction {
1729
- GetDbTransaction(): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<System_Data_Common.DbTransaction>;
1732
+ GetDbTransaction(): Rewrap<this, System_Data_Common.DbTransaction>;
1730
1733
  }
1731
1734
 
1732
1735
  export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IExecutionStrategy {
1733
- ExecuteInTransaction(operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<void>;
1734
- ExecuteInTransactionAsync(operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<System_Threading_Tasks.Task>;
1735
- ExecuteInTransactionAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<System_Threading_Tasks.Task>;
1736
- ExecuteInTransaction<TResult>(operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<TResult>;
1737
- ExecuteInTransactionAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<System_Threading_Tasks.Task_1<TResult>>;
1738
- ExecuteInTransaction<TState>(state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<void>;
1739
- ExecuteInTransactionAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<System_Threading_Tasks.Task>;
1740
- ExecuteInTransaction<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<TResult>;
1741
- ExecuteInTransactionAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<System_Threading_Tasks.Task_1<TResult>>;
1736
+ ExecuteInTransaction(operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, void>;
1737
+ ExecuteInTransactionAsync(operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, System_Threading_Tasks.Task>;
1738
+ ExecuteInTransactionAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1739
+ ExecuteInTransaction<TResult>(operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, TResult>;
1740
+ ExecuteInTransactionAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1741
+ ExecuteInTransaction<TState>(state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, void>;
1742
+ ExecuteInTransactionAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1743
+ ExecuteInTransaction<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, TResult>;
1744
+ ExecuteInTransactionAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1742
1745
  }
1743
1746
 
1744
1747
  export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalCommandBuilder {
1745
- AppendLine(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1746
- AppendLine(value: System.FormattableString): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1747
- AppendLines(value: string, skipFinalNewline?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1748
- Indent(): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<System.IDisposable>;
1749
- AddParameter(invariantName: string, name: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1750
- AddParameter(invariantName: string, name: string, relationalTypeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, nullable: System.Nullable_1<System_Internal.Boolean>, direction?: System_Data.ParameterDirection): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1751
- AddCompositeParameter(invariantName: string, subParameters: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Storage.IRelationalParameter>): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1752
- AddRawParameter(invariantName: string, dbParameter: System_Data_Common.DbParameter): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1748
+ AppendLine(value: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1749
+ AppendLine(value: System.FormattableString): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1750
+ AppendLines(value: string, skipFinalNewline?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1751
+ Indent(): Rewrap<this, System.IDisposable>;
1752
+ AddParameter(invariantName: string, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1753
+ AddParameter(invariantName: string, name: string, relationalTypeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, nullable: System.Nullable_1<System_Internal.Boolean>, direction?: System_Data.ParameterDirection): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1754
+ AddCompositeParameter(invariantName: string, subParameters: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Storage.IRelationalParameter>): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1755
+ AddRawParameter(invariantName: string, dbParameter: System_Data_Common.DbParameter): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1753
1756
  }
1754
1757
 
1755
1758
  export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalTypeMappingSource {
1756
- GetMappingForValue(value: unknown): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1757
- GetMappingForValue(value: unknown, model: Microsoft_EntityFrameworkCore_Metadata.IModel): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1758
- GetMapping(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1759
- GetMapping(clrType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1760
- GetMapping(clrType: System.Type, model: Microsoft_EntityFrameworkCore_Metadata.IModel): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1761
- GetMapping(typeName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1759
+ GetMappingForValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1760
+ GetMappingForValue(value: unknown, model: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1761
+ GetMapping(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1762
+ GetMapping(clrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1763
+ GetMapping(clrType: System.Type, model: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1764
+ GetMapping(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1762
1765
  }
1763
1766
 
1764
1767
  export interface __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameter {
1765
- FormatParameter(logParameterValues: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage_Internal<string>;
1768
+ FormatParameter(logParameterValues: boolean): Rewrap<this, string>;
1766
1769
  }
1767
1770
 
1768
1771
  export interface __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameterCollection {
1769
- FormatParameters(logParameterValues: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore_Storage_Internal<string>;
1772
+ FormatParameters(logParameterValues: boolean): Rewrap<this, string>;
1770
1773
  }
1771
1774
 
1772
1775
  export interface __Ext_Microsoft_EntityFrameworkCore_Update_IUpdateEntry {
1773
- GetCurrentProviderValue(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Update<unknown | undefined>;
1774
- GetOriginalProviderValue(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Update<unknown | undefined>;
1775
- ToDebugString(options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): ExtensionMethods_Microsoft_EntityFrameworkCore_Update<string>;
1776
- BuildCurrentValuesString(properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): ExtensionMethods_Microsoft_EntityFrameworkCore_Update<string>;
1777
- BuildOriginalValuesString(properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): ExtensionMethods_Microsoft_EntityFrameworkCore_Update<string>;
1776
+ GetCurrentProviderValue(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, unknown | undefined>;
1777
+ GetOriginalProviderValue(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, unknown | undefined>;
1778
+ ToDebugString(options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): Rewrap<this, string>;
1779
+ BuildCurrentValuesString(properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): Rewrap<this, string>;
1780
+ BuildOriginalValuesString(properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): Rewrap<this, string>;
1778
1781
  }
1779
1782
 
1780
1783
  export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
1781
- AddDbContext<TContext>(optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1782
- AddDbContextPool<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1783
- AddDbContextPool<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1784
- AddDbContext<TContext>(contextLifetime: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1785
- AddDbContext<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1786
- AddDbContextFactory<TContext>(optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1787
- AddDbContextFactory<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1788
- AddPooledDbContextFactory<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1789
- AddPooledDbContextFactory<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1790
- ConfigureDbContext<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1791
- ConfigureDbContext<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1784
+ AddDbContext<TContext>(optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1785
+ AddDbContextPool<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1786
+ AddDbContextPool<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1787
+ AddDbContext<TContext>(contextLifetime: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1788
+ AddDbContext<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1789
+ AddDbContextFactory<TContext>(optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1790
+ AddDbContextFactory<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1791
+ AddPooledDbContextFactory<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1792
+ AddPooledDbContextFactory<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1793
+ ConfigureDbContext<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1794
+ ConfigureDbContext<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1792
1795
  }
1793
1796
 
1794
1797
  export interface __Ext_System_Transactions_DatabaseFacade {
1795
- EnlistTransaction(transaction: System_Transactions.Transaction): ExtensionMethods_System_Transactions<void>;
1796
- GetEnlistedTransaction(): ExtensionMethods_System_Transactions<System_Transactions.Transaction | undefined>;
1798
+ EnlistTransaction(transaction: System_Transactions.Transaction): Rewrap<this, void>;
1799
+ GetEnlistedTransaction(): Rewrap<this, System_Transactions.Transaction | undefined>;
1797
1800
  }
1798
1801
 
1802
+ // Internal helper types for sticky extension scopes
1803
+ type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
1804
+ type __TsonicMergeExtMaps<A, B> = Omit<A, keyof B> & B;
1805
+ type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
1806
+ type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
1807
+
1799
1808
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
1809
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
1810
+ (
1811
+ (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbSet_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbSet_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracker : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionElementType ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IConventionIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IConventionKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IConventionModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IConventionProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger ? __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType, __Ext_Microsoft_EntityFrameworkCore_IElementType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableElementType ? __Ext_Microsoft_EntityFrameworkCore_IMutableElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IMutableIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IMutableKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IMutableModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IMutableProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger ? __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase))))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_ITypeBase> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder, __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder : {}) & (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.IConventionTriggerBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_IndexBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IndexBuilder, __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_KeyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_KeyBuilder, __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder, __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder, __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder, __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder, __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder, __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase ? __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends System_Collections_ObjectModel.ObservableCollection_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T0> : {}) & (TShape extends System_Linq.IQueryable ? __Ext_Microsoft_EntityFrameworkCore_IQueryable : {}) & (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
1812
+ );
1813
+
1814
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
1815
+ __tsonic_shape: unknown;
1816
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore<this["__tsonic_shape"]>;
1817
+ }
1818
+
1800
1819
  export type ExtensionMethods_Microsoft_EntityFrameworkCore<TShape> =
1801
1820
  TShape extends null | undefined ? TShape
1802
1821
  : TShape extends void ? void
1803
- : TShape & (
1804
- (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) &
1805
- (TShape extends Microsoft_EntityFrameworkCore.DbSet_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbSet_1<T0> : {}) &
1806
- (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) &
1807
- (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracker : {}) &
1808
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) &
1809
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty : {}) &
1810
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionElementType ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementType : {}) &
1811
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) &
1812
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey : {}) &
1813
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) &
1814
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionKey : {}) &
1815
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) &
1816
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) &
1817
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger ? __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger : {}) &
1818
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase : {}) &
1819
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? __Ext_Microsoft_EntityFrameworkCore_IElementType : {}) &
1820
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) &
1821
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IForeignKey : {}) &
1822
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) &
1823
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? __Ext_Microsoft_EntityFrameworkCore_IKey : {}) &
1824
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_IModel : {}) &
1825
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty : {}) &
1826
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableElementType ? __Ext_Microsoft_EntityFrameworkCore_IMutableElementType : {}) &
1827
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) &
1828
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey : {}) &
1829
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) &
1830
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableKey : {}) &
1831
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) &
1832
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) &
1833
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger ? __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger : {}) &
1834
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase : {}) &
1835
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) &
1836
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty : {}) &
1837
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType : {}) &
1838
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) &
1839
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey : {}) &
1840
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex : {}) &
1841
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey : {}) &
1842
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel : {}) &
1843
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) &
1844
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger : {}) &
1845
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase : {}) &
1846
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_ITypeBase : {}) &
1847
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder : {}) &
1848
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<T0> : {}) &
1849
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder : {}) &
1850
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<T0> : {}) &
1851
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder : {}) &
1852
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<T0> : {}) &
1853
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder : {}) &
1854
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<T0> : {}) &
1855
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder : {}) &
1856
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0> : {}) &
1857
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder : {}) &
1858
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder : {}) &
1859
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) &
1860
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder : {}) &
1861
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) &
1862
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder : {}) &
1863
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) &
1864
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder : {}) &
1865
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) &
1866
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) &
1867
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder : {}) &
1868
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder : {}) &
1869
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) &
1870
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_KeyBuilder : {}) &
1871
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T0> : {}) &
1872
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder : {}) &
1873
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<T0, T1> : {}) &
1874
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder ? __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder : {}) &
1875
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<T0, T1> : {}) &
1876
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder ? __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder : {}) &
1877
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<T0> : {}) &
1878
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder : {}) &
1879
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<T0> : {}) &
1880
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) &
1881
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) &
1882
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder ? __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder : {}) &
1883
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<T0, T1> : {}) &
1884
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder ? __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder : {}) &
1885
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<T0, T1> : {}) &
1886
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder ? __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder : {}) &
1887
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<T0> : {}) &
1888
- (TShape extends Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<T0, T1> : {}) &
1889
- (TShape extends Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase ? __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase : {}) &
1890
- (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy : {}) &
1891
- (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) &
1892
- (TShape extends System_Collections_ObjectModel.ObservableCollection_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T0> : {}) &
1893
- (TShape extends System_Linq.IQueryable ? __Ext_Microsoft_EntityFrameworkCore_IQueryable : {}) &
1894
- (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T0> : {}) &
1895
- (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
1896
- );
1822
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape>;
1897
1823
 
1898
1824
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.ChangeTracking
1825
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking<TShape> =
1826
+ (
1827
+ (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer : {})
1828
+ );
1829
+
1830
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking {
1831
+ __tsonic_shape: unknown;
1832
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking<this["__tsonic_shape"]>;
1833
+ }
1834
+
1899
1835
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking<TShape> =
1900
1836
  TShape extends null | undefined ? TShape
1901
1837
  : TShape extends void ? void
1902
- : TShape & (
1903
- (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer : {})
1904
- );
1838
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.ChangeTracking", __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking<TShape>;
1905
1839
 
1906
1840
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.ChangeTracking.Internal
1841
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<TShape> =
1842
+ (
1843
+ (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ValueComparer : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking_Internal.IStateManager ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager : {})
1844
+ );
1845
+
1846
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking_Internal {
1847
+ __tsonic_shape: unknown;
1848
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<this["__tsonic_shape"]>;
1849
+ }
1850
+
1907
1851
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<TShape> =
1908
1852
  TShape extends null | undefined ? TShape
1909
1853
  : TShape extends void ? void
1910
- : TShape & (
1911
- (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ValueComparer : {}) &
1912
- (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking_Internal.IStateManager ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager : {})
1913
- );
1854
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.ChangeTracking.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<TShape>;
1914
1855
 
1915
1856
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Diagnostics
1857
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Diagnostics<TShape> =
1858
+ (
1859
+ (TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1<T0> : {})
1860
+ );
1861
+
1862
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Diagnostics {
1863
+ __tsonic_shape: unknown;
1864
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Diagnostics<this["__tsonic_shape"]>;
1865
+ }
1866
+
1916
1867
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<TShape> =
1917
1868
  TShape extends null | undefined ? TShape
1918
1869
  : TShape extends void ? void
1919
- : TShape & (
1920
- (TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1<T0> : {})
1921
- );
1870
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Diagnostics", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Diagnostics> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Diagnostics<TShape>;
1922
1871
 
1923
1872
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Infrastructure
1873
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure<TShape> =
1874
+ (
1875
+ (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.IInfrastructure_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.ILazyLoader ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IModel : {}) & (TShape extends System.Type ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Type : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T0> : {}) & (TShape extends System_Linq_Expressions.Expression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Expression : {}) & (TShape extends System_Linq_Expressions.LambdaExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_LambdaExpression : {}) & (TShape extends System_Linq_Expressions.MemberExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MemberExpression : {}) & (TShape extends System_Linq_Expressions.MethodCallExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodCallExpression : {}) & (TShape extends System_Reflection.MethodInfo ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodInfo : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T> : {})
1876
+ );
1877
+
1878
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure {
1879
+ __tsonic_shape: unknown;
1880
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure<this["__tsonic_shape"]>;
1881
+ }
1882
+
1924
1883
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<TShape> =
1925
1884
  TShape extends null | undefined ? TShape
1926
1885
  : TShape extends void ? void
1927
- : TShape & (
1928
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.IInfrastructure_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1<T0> : {}) &
1929
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.ILazyLoader ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader : {}) &
1930
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IModel : {}) &
1931
- (TShape extends System.Type ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Type : {}) &
1932
- (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T0> : {}) &
1933
- (TShape extends System_Linq_Expressions.Expression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Expression : {}) &
1934
- (TShape extends System_Linq_Expressions.LambdaExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_LambdaExpression : {}) &
1935
- (TShape extends System_Linq_Expressions.MemberExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MemberExpression : {}) &
1936
- (TShape extends System_Linq_Expressions.MethodCallExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodCallExpression : {}) &
1937
- (TShape extends System_Reflection.MethodInfo ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodInfo : {}) &
1938
- (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T> : {})
1939
- );
1886
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Infrastructure", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure<TShape>;
1940
1887
 
1941
1888
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Infrastructure.Internal
1889
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure_Internal<TShape> =
1890
+ (
1891
+ (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.IDbContextOptions ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Internal_IDbContextOptions : {})
1892
+ );
1893
+
1894
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure_Internal {
1895
+ __tsonic_shape: unknown;
1896
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure_Internal<this["__tsonic_shape"]>;
1897
+ }
1898
+
1942
1899
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure_Internal<TShape> =
1943
1900
  TShape extends null | undefined ? TShape
1944
1901
  : TShape extends void ? void
1945
- : TShape & (
1946
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.IDbContextOptions ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Internal_IDbContextOptions : {})
1947
- );
1902
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Infrastructure.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure_Internal<TShape>;
1948
1903
 
1949
1904
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Internal
1905
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Internal<TShape> =
1906
+ (
1907
+ (TShape extends Microsoft_EntityFrameworkCore.DbContext ? __Ext_Microsoft_EntityFrameworkCore_Internal_DbContext : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.ICurrentDbContext ? __Ext_Microsoft_EntityFrameworkCore_Internal_ICurrentDbContext : {}) & (TShape extends Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies ? __Ext_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Internal_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_IReadOnlyTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_TypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_Internal.RelationalCommandResolver ? __Ext_Microsoft_EntityFrameworkCore_Internal_RelationalCommandResolver : {}) & (TShape extends System.Type ? __Ext_Microsoft_EntityFrameworkCore_Internal_Type : {}) & (TShape extends System.ValueTuple_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_Internal_ValueTuple_2<T0, T1> : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T0> : {}) & (TShape extends System_Linq_Expressions.Expression ? __Ext_Microsoft_EntityFrameworkCore_Internal_Expression : {}) & (TShape extends System_Linq_Expressions.LambdaExpression ? __Ext_Microsoft_EntityFrameworkCore_Internal_LambdaExpression : {}) & (TShape extends System_Linq_Expressions.UnaryExpression ? __Ext_Microsoft_EntityFrameworkCore_Internal_UnaryExpression : {}) & (TShape extends System_Reflection.MethodInfo ? __Ext_Microsoft_EntityFrameworkCore_Internal_MethodInfo : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T> : {})
1908
+ );
1909
+
1910
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Internal {
1911
+ __tsonic_shape: unknown;
1912
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Internal<this["__tsonic_shape"]>;
1913
+ }
1914
+
1950
1915
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<TShape> =
1951
1916
  TShape extends null | undefined ? TShape
1952
1917
  : TShape extends void ? void
1953
- : TShape & (
1954
- (TShape extends Microsoft_EntityFrameworkCore.DbContext ? __Ext_Microsoft_EntityFrameworkCore_Internal_DbContext : {}) &
1955
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.ICurrentDbContext ? __Ext_Microsoft_EntityFrameworkCore_Internal_ICurrentDbContext : {}) &
1956
- (TShape extends Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies ? __Ext_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies : {}) &
1957
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEntityType : {}) &
1958
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Internal_IModel : {}) &
1959
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_IReadOnlyTypeBase : {}) &
1960
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_ITypeBase : {}) &
1961
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_TypeBase : {}) &
1962
- (TShape extends Microsoft_EntityFrameworkCore_Query_Internal.RelationalCommandResolver ? __Ext_Microsoft_EntityFrameworkCore_Internal_RelationalCommandResolver : {}) &
1963
- (TShape extends System.Type ? __Ext_Microsoft_EntityFrameworkCore_Internal_Type : {}) &
1964
- (TShape extends System.ValueTuple_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_Internal_ValueTuple_2<T0, T1> : {}) &
1965
- (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T0> : {}) &
1966
- (TShape extends System_Linq_Expressions.Expression ? __Ext_Microsoft_EntityFrameworkCore_Internal_Expression : {}) &
1967
- (TShape extends System_Linq_Expressions.LambdaExpression ? __Ext_Microsoft_EntityFrameworkCore_Internal_LambdaExpression : {}) &
1968
- (TShape extends System_Linq_Expressions.UnaryExpression ? __Ext_Microsoft_EntityFrameworkCore_Internal_UnaryExpression : {}) &
1969
- (TShape extends System_Reflection.MethodInfo ? __Ext_Microsoft_EntityFrameworkCore_Internal_MethodInfo : {}) &
1970
- (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T> : {})
1971
- );
1918
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Internal<TShape>;
1972
1919
 
1973
1920
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata
1921
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata<TShape> =
1922
+ (
1923
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource ? __Ext_Microsoft_EntityFrameworkCore_Metadata_ConfigurationSource : {}) & (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Nullable_1<T0> : {})
1924
+ );
1925
+
1926
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata {
1927
+ __tsonic_shape: unknown;
1928
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata<this["__tsonic_shape"]>;
1929
+ }
1930
+
1974
1931
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<TShape> =
1975
1932
  TShape extends null | undefined ? TShape
1976
1933
  : TShape extends void ? void
1977
- : TShape & (
1978
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource ? __Ext_Microsoft_EntityFrameworkCore_Metadata_ConfigurationSource : {}) &
1979
- (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Nullable_1<T0> : {})
1980
- );
1934
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata<TShape>;
1981
1935
 
1982
1936
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal
1937
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<TShape> =
1938
+ (
1939
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Conventions.IConventionBatch ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal_IConventionBatch : {})
1940
+ );
1941
+
1942
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal {
1943
+ __tsonic_shape: unknown;
1944
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<this["__tsonic_shape"]>;
1945
+ }
1946
+
1983
1947
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<TShape> =
1984
1948
  TShape extends null | undefined ? TShape
1985
1949
  : TShape extends void ? void
1986
- : TShape & (
1987
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Conventions.IConventionBatch ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal_IConventionBatch : {})
1988
- );
1950
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<TShape>;
1989
1951
 
1990
1952
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Internal
1953
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
1954
+ (
1955
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType, __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlySkipNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ValueGenerated ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ValueGenerated : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_EntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.IRuntimeEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_PropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.Property ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Property : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeConfigurationType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeConfigurationType : {}) & (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Nullable_1<T0> : {})
1956
+ );
1957
+
1958
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal {
1959
+ __tsonic_shape: unknown;
1960
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<this["__tsonic_shape"]>;
1961
+ }
1962
+
1991
1963
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
1992
1964
  TShape extends null | undefined ? TShape
1993
1965
  : TShape extends void ? void
1994
- : TShape & (
1995
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty : {}) &
1996
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType : {}) &
1997
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IEntityType : {}) &
1998
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IForeignKey : {}) &
1999
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IModel : {}) &
2000
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IMutableModel : {}) &
2001
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IProperty : {}) &
2002
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IPropertyBase : {}) &
2003
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyComplexProperty : {}) &
2004
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType : {}) &
2005
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyForeignKey : {}) &
2006
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex : {}) &
2007
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyKey : {}) &
2008
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyNavigation : {}) &
2009
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyProperty : {}) &
2010
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyPropertyBase : {}) &
2011
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlySkipNavigation : {}) &
2012
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyTypeBase : {}) &
2013
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ITypeBase : {}) &
2014
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.ValueGenerated ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ValueGenerated : {}) &
2015
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_EntityType : {}) &
2016
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.IRuntimeEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType : {}) &
2017
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.Property ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Property : {}) &
2018
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_PropertyBase : {}) &
2019
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeConfigurationType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeConfigurationType : {}) &
2020
- (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Nullable_1<T0> : {})
2021
- );
1966
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape>;
2022
1967
 
2023
1968
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations
1969
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape> =
1970
+ (
1971
+ (TShape extends Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly ? __Ext_Microsoft_EntityFrameworkCore_Migrations_IMigrationsAssembly : {})
1972
+ );
1973
+
1974
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations {
1975
+ __tsonic_shape: unknown;
1976
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<this["__tsonic_shape"]>;
1977
+ }
1978
+
2024
1979
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations<TShape> =
2025
1980
  TShape extends null | undefined ? TShape
2026
1981
  : TShape extends void ? void
2027
- : TShape & (
2028
- (TShape extends Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly ? __Ext_Microsoft_EntityFrameworkCore_Migrations_IMigrationsAssembly : {})
2029
- );
1982
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape>;
2030
1983
 
2031
1984
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations.Internal
1985
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations_Internal<TShape> =
1986
+ (
1987
+ (TShape extends Microsoft_EntityFrameworkCore_Migrations.Migration ? __Ext_Microsoft_EntityFrameworkCore_Migrations_Internal_Migration : {})
1988
+ );
1989
+
1990
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations_Internal {
1991
+ __tsonic_shape: unknown;
1992
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations_Internal<this["__tsonic_shape"]>;
1993
+ }
1994
+
2032
1995
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations_Internal<TShape> =
2033
1996
  TShape extends null | undefined ? TShape
2034
1997
  : TShape extends void ? void
2035
- : TShape & (
2036
- (TShape extends Microsoft_EntityFrameworkCore_Migrations.Migration ? __Ext_Microsoft_EntityFrameworkCore_Migrations_Internal_Migration : {})
2037
- );
1998
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations_Internal<TShape>;
2038
1999
 
2039
2000
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Storage
2001
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage<TShape> =
2002
+ (
2003
+ (TShape extends Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction ? __Ext_Microsoft_EntityFrameworkCore_Storage_IDbContextTransaction : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_Storage_IExecutionStrategy : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder ? __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalCommandBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource ? __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalTypeMappingSource : {})
2004
+ );
2005
+
2006
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage {
2007
+ __tsonic_shape: unknown;
2008
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage<this["__tsonic_shape"]>;
2009
+ }
2010
+
2040
2011
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<TShape> =
2041
2012
  TShape extends null | undefined ? TShape
2042
2013
  : TShape extends void ? void
2043
- : TShape & (
2044
- (TShape extends Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction ? __Ext_Microsoft_EntityFrameworkCore_Storage_IDbContextTransaction : {}) &
2045
- (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_Storage_IExecutionStrategy : {}) &
2046
- (TShape extends Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder ? __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalCommandBuilder : {}) &
2047
- (TShape extends Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource ? __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalTypeMappingSource : {})
2048
- );
2014
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Storage", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage<TShape>;
2049
2015
 
2050
2016
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Storage.Internal
2017
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage_Internal<TShape> =
2018
+ (
2019
+ (TShape extends System_Data_Common.DbParameter ? __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameter : {}) & (TShape extends System_Data_Common.DbParameterCollection ? __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameterCollection : {})
2020
+ );
2021
+
2022
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage_Internal {
2023
+ __tsonic_shape: unknown;
2024
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage_Internal<this["__tsonic_shape"]>;
2025
+ }
2026
+
2051
2027
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Storage_Internal<TShape> =
2052
2028
  TShape extends null | undefined ? TShape
2053
2029
  : TShape extends void ? void
2054
- : TShape & (
2055
- (TShape extends System_Data_Common.DbParameter ? __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameter : {}) &
2056
- (TShape extends System_Data_Common.DbParameterCollection ? __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameterCollection : {})
2057
- );
2030
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Storage.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage_Internal<TShape>;
2058
2031
 
2059
2032
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Update
2033
+ type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Update<TShape> =
2034
+ (
2035
+ (TShape extends Microsoft_EntityFrameworkCore_Update.IUpdateEntry ? __Ext_Microsoft_EntityFrameworkCore_Update_IUpdateEntry : {})
2036
+ );
2037
+
2038
+ interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Update {
2039
+ __tsonic_shape: unknown;
2040
+ __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Update<this["__tsonic_shape"]>;
2041
+ }
2042
+
2060
2043
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Update<TShape> =
2061
2044
  TShape extends null | undefined ? TShape
2062
2045
  : TShape extends void ? void
2063
- : TShape & (
2064
- (TShape extends Microsoft_EntityFrameworkCore_Update.IUpdateEntry ? __Ext_Microsoft_EntityFrameworkCore_Update_IUpdateEntry : {})
2065
- );
2046
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Update", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Update> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Update<TShape>;
2066
2047
 
2067
2048
  // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
2049
+ type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape> =
2050
+ (
2051
+ (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
2052
+ );
2053
+
2054
+ interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection {
2055
+ __tsonic_shape: unknown;
2056
+ __tsonic_type: __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<this["__tsonic_shape"]>;
2057
+ }
2058
+
2068
2059
  export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
2069
2060
  TShape extends null | undefined ? TShape
2070
2061
  : TShape extends void ? void
2071
- : TShape & (
2072
- (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
2073
- );
2062
+ : TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape>;
2074
2063
 
2075
2064
  // Generic helper type for extension methods in namespace: System.Transactions
2065
+ type __TsonicExtSurface_System_Transactions<TShape> =
2066
+ (
2067
+ (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_System_Transactions_DatabaseFacade : {})
2068
+ );
2069
+
2070
+ interface __TsonicExtApplier_System_Transactions {
2071
+ __tsonic_shape: unknown;
2072
+ __tsonic_type: __TsonicExtSurface_System_Transactions<this["__tsonic_shape"]>;
2073
+ }
2074
+
2076
2075
  export type ExtensionMethods_System_Transactions<TShape> =
2077
2076
  TShape extends null | undefined ? TShape
2078
2077
  : TShape extends void ? void
2079
- : TShape & (
2080
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_System_Transactions_DatabaseFacade : {})
2081
- );
2078
+ : TShape & __TsonicWithExt<TShape, "System.Transactions", __TsonicExtApplier_System_Transactions> & __TsonicExtSurface_System_Transactions<TShape>;
2082
2079