-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
6.0 API Reviews #24743
Comments
Part of #24743 * Rename `DisableConcurrencyDetection` to `EnableThreadSafetyChecks` * Rename `IRelationalCommand.PopulateFromTemplate` to `PopulateFrom` * Rename parameter of above from `templateCommand` to `command`
Part of #24743 * Rename `DisableConcurrencyDetection` to `EnableThreadSafetyChecks` * Rename `IRelationalCommand.PopulateFromTemplate` to `PopulateFrom` * Rename parameter of above from `templateCommand` to `command`
Perform other refactorings. Fixes #24743
Perform other refactorings. Fixes #24743
Yes, the table doesn't need to be specified when dropping an index on some providers. This one case of nullability crippled the usability of the interface, so I removed the interface from this type and strengthened its semantics to include a non-nullable table name. The interface was added for table rebuids. That code was unaffected by this change since DropIndex operations were handled separately. |
Perform other refactorings. Part of #24743
Make UpdateEntryEventData derive from DbContextEventData Part of #24743
Make UpdateEntryEventData derive from DbContextEventData Part of #24743
Make UpdateEntryEventData derive from DbContextEventData Part of #24743
Changes: - Use TargetFramework from startup project - Add --output and --force - Fix --runtime and --self-contained - Output bundle path - Move the MigrationsBundle class under the Migrations namespace Fixes dotnet#19693, part of dotnet#24743
Changes: - Use TargetFramework from startup project - Add --output and --force - Fix --runtime and --self-contained - Output bundle path - Move the MigrationsBundle class under the Migrations namespace Fixes dotnet#19693, part of dotnet#24743
Added override to do custom task for GroupBy which ended up getting removed in final implementation but method was left behind Part of #24743
Added override to do custom task for GroupBy which ended up getting removed in final implementation but method was left behind Part of #24743
February 19
Done
IModelCreationDependencies
SingletonModelDependencies
toRuntimeModelDependecies
IConventionModel.GetEntityTypes(Type type);
toFindEntityTypes
IConventionModel.FindPrincipals
toGetPrincipals
RelationalEntityTypeExtensions.FindRowInternalForeignKeys
IEntityType
overload, and more generally have three overloads for each of these.RelationalPropertyExtensions.FindOverrides
may not need a mutable overloadMarch 4
Done
Annotatable.IsReadonly
toReadOnly
EnsureReadonly
toEnsureMutable
RelationalConnection
and removeDbConnectionState
March 24
Done
DisableConcurrencyDetection
toEnableThreadSafetyChecks
ITableMigrationOperation
fromDropIndexOperation
is expected.IRelationalCommand.PopulateFromTemplate
toPopulateFrom
templateCommand
tocommand
April 21
Done
DbContext.DesignTimeModel
toGetService<IDesignTimeModel>()
or similarForeignKey.ReferencingSkipNavigations
return anISet
SlimModel.RelationalModel
can be made an explicit interface implementation and will still show up in the debugger. Also consider for DebugView.June 16
Done
ICSharpHelper
back to .Designobject
August 2
Done
in
August 18
Remove CosmosDbContextOptionsBuilder.HttpClientFactory and enable ReplaceService instead.Looked at this and talked to Andriy. It's quite complicated and somewhat ugly to do a service, so leaving as is.The text was updated successfully, but these errors were encountered: