🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

Microsoft.EntityFrameworkCore.Relational

Package Overview
Dependencies
Maintainers
4
Versions
287
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

microsoft.entityframeworkcore.relational - nuget Package Compare versions

Package version was removed
This package version has been unpublished, mostly likely due to security reasons
Comparing version
1.0.0-rc2-final
to
0.0.1-alpha
content/Readme.txt

Sorry, the diff of this file is not supported yet

+1
-3

@@ -1,3 +0,1 @@

<?xml version="1.0" encoding="utf-8"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="dll" ContentType="application/octet" /><Default Extension="xml" ContentType="application/octet" /><Default Extension="nuspec" ContentType="application/octet" /></Types>
<?xml version="1.0" encoding="utf-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="nuspec" ContentType="application/octet" /><Default Extension="txt" ContentType="application/octet" /><Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /></Types>

@@ -1,39 +0,14 @@

<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>Microsoft.EntityFrameworkCore.Relational</id>
<version>1.0.0-rc2-final</version>
<authors>Microsoft.EntityFrameworkCore.Relational</authors>
<owners>Microsoft.EntityFrameworkCore.Relational</owners>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<version>0.0.1-alpha</version>
<authors>aspnet</authors>
<owners>Microsoft</owners>
<licenseUrl>http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm</licenseUrl>
<projectUrl>http://www.asp.net/</projectUrl>
<iconUrl>http://go.microsoft.com/fwlink/?LinkID=288859</iconUrl>
<description>Shared Entity Framework components for relational data stores.</description>
<copyright>Copyright © Microsoft Corporation</copyright>
<dependencies>
<group targetFramework=".NETCore5.0">
<dependency id="Microsoft.CSharp" version="4.0.0" />
<dependency id="System.Data.Common" version="4.0.0" />
<dependency id="System.Text.RegularExpressions" version="4.0.10" />
<dependency id="System.Diagnostics.DiagnosticSource" version="4.0.0-beta-23516" />
<dependency id="Microsoft.EntityFrameworkCore" version="1.0.0-rc2-final" />
</group>
<group targetFramework=".NETFramework4.5.1">
<dependency id="System.Diagnostics.DiagnosticSource" version="4.0.0-rc2-24027" />
<dependency id="Microsoft.EntityFrameworkCore" version="1.0.0-rc2-final" />
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="Microsoft.CSharp" version="4.0.1-rc2-24027" />
<dependency id="System.Data.Common" version="4.0.1-rc2-24027" />
<dependency id="System.Diagnostics.DiagnosticSource" version="4.0.0-rc2-24027" />
<dependency id="System.Text.RegularExpressions" version="4.0.12-rc2-24027" />
<dependency id="Microsoft.EntityFrameworkCore" version="1.0.0-rc2-final" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Data" targetFramework=".NETFramework4.5.1" />
<frameworkAssembly assemblyName="System.Transactions" targetFramework=".NETFramework4.5.1" />
</frameworkAssemblies>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>Microsoft.EntityFrameworkCore.Relational</description>
</metadata>
</package>

Sorry, the diff of this file is not supported yet

<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.EntityFrameworkCore.Relational</name>
</assembly>
<members>
<member name="M:Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.Migrate(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade)">
<summary>
Applies any pending migrations for the context to the database.
</summary>
<param name="databaseFacade"> The <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade" /> for the context. </param>
</member>
<member name="M:Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.MigrateAsync(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade,System.Threading.CancellationToken)">
<summary>
Asynchronously applies any pending migrations for the context to the database.
</summary>
<param name="databaseFacade"> The <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade" /> for the context. </param>
<param name="cancellationToken"> A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete. </param>
<returns> A task that represents the asynchronous migration operation. </returns>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ModificationFunctionInvalidEntityState(System.Object)">
<summary>
Cannot create a ModificationFunction for an entity in state '{entityState}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UpdateConcurrencyException(System.Object,System.Object)">
<summary>
Database operation expected to affect {expectedRows} row(s) but actually affected {actualRows} row(s). Data may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=527962 for information on understanding and handling optimistic concurrency exceptions.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MultipleProvidersConfigured">
<summary>
Multiple relational database provider configurations found. A context can only be configured to use a single database provider.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoProviderConfigured">
<summary>
No relational database providers are configured. Configure a database provider using OnConfiguring or by creating an ImmutableDbContextOptions with a database provider configured and passing it to the context.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ConnectionAndConnectionString">
<summary>
Both an existing DbConnection and a connection string have been configured. When an existing DbConnection is used the connection string must be set on that connection.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoConnectionOrConnectionString">
<summary>
A relational store has been configured without specifying either the DbConnection or connection string to use.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnsupportedType(System.Object)">
<summary>
No mapping to a relational type can be found for the CLR type '{clrType}'
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalNotInUse">
<summary>
Relational-specific methods can only be used when the context is using a relational database provider.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UpdateStoreException">
<summary>
An error occurred while updating the entries. See the inner exception for details.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.TransactionAlreadyStarted">
<summary>
The connection is already in a transaction and cannot participate in another transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.TransactionAssociatedWithDifferentConnection">
<summary>
The specified transaction is not associated with the current connection. Only transactions associated with the current connection may be used.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerOpeningConnection(System.Object,System.Object)">
<summary>
Opening connection to database '{database}' on server '{server}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerClosingConnection(System.Object,System.Object)">
<summary>
Closing connection to database '{database}' on server '{server}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerBeginningTransaction(System.Object)">
<summary>
Beginning transaction with isolation level '{isolationLevel}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerCommittingTransaction">
<summary>
Committing transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerRollingbackTransaction">
<summary>
Rolling back transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.BadSequenceType">
<summary>
Invalid type for sequence. Valid types are 'Int64' (the default), 'Int32', 'Int16', and 'Byte'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.BadSequenceString">
<summary>
Unable to deserialize sequence from model metadata. See inner exception for details.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MigrationNotFound(System.Object)">
<summary>
The migration '{migrationName}' was not found.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnknownOperation(System.Object,System.Object)">
<summary>
The current migration SQL generator '{sqlGeneratorType}' is unable to generate SQL for operations of type '{operationType}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.InvalidCommandTimeout">
<summary>
The specified CommandTimeout value is not valid. It must be a positive number.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.InvalidMaxBatchSize">
<summary>
The specified MaxBatchSize value is not valid. It must be a positive number.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnableToDiscriminate(System.Object)">
<summary>
Unable to materialize entity of type '{entityType}'. No discriminators were matched.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorPropertyMustBeOnRoot(System.Object)">
<summary>
A discriminator property cannot be set for the entity type '{entityType}' because it is not the root of an inheritance hierarchy.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorPropertyNotFound(System.Object,System.Object)">
<summary>
Unable to set property '{property}' as a discriminator for entity type '{entityType}' because it is not a property of '{entityType}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.AmbientTransaction">
<summary>
An ambient transaction has been detected. Connections opened by Entity Framework will not be enlisted in ambient transactions. To suppress this warning call SuppressAmbientTransactionWarning() when overriding DbContext.OnConfiguring.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.PossibleUnintendedUseOfEquals(System.Object,System.Object)">
<summary>
Possible unintended use of method Equals(object) for arguments of different types: '{left}', '{right}'. This comparison will always return 'false'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.StoredProcedureIncludeNotSupported">
<summary>
The Include operation is not supported when calling a stored procedure.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.GeneratingDown(System.Object)">
<summary>
Generating down script for migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.GeneratingUp(System.Object)">
<summary>
Generating up script for migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ApplyingMigration(System.Object)">
<summary>
Applying migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RevertingMigration(System.Object)">
<summary>
Reverting migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UsingConnection(System.Object,System.Object)">
<summary>
Using database '{database}' on server '{dataSource}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.FromSqlMissingColumn(System.Object)">
<summary>
The required column '{column}' was not present in the results of a 'FromSql' operation.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateTableName(System.Object,System.Object,System.Object)">
<summary>
Cannot use table '{table}' in schema '{schema}' for entity '{entityType}' since it is being used for another entity.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorEntityTypeNotDerived(System.Object,System.Object)">
<summary>
Cannot configure the discriminator value for entity type '{entityType}' because it doesn't derive from '{rootEntityType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorValueIncompatible(System.Object,System.Object,System.Object)">
<summary>
Cannot set discriminator value '{value}' for discriminator property '{discriminator}' because it is not assignable to property of type '{discriminatorType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorForValue(System.Object,System.Object)">
<summary>
Cannot set discriminator value for entity type '{entityType}' because the root entity type '{rootEntityType}' doesn't have a discriminator property set.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorProperty(System.Object)">
<summary>
The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator property configured.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorValue(System.Object)">
<summary>
The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator value configured.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ClientEvalDisabled(System.Object)">
<summary>
Unable to compile the LINQ expression '{expression}' because it requires client evaluation, which is disabled. Either enable client evaluation or rewrite the query to not require client evaluation.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ClientEvalWarning(System.Object)">
<summary>
The LINQ expression '{expression}' could not be translated and will be evaluated locally.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MissingParameterValue(System.Object)">
<summary>
No value provided for required parameter '{parameter}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ParameterNotObjectArray(System.Object)">
<summary>
Cannot use the value provided for parameter '{parameter}' because it isn't assignable to type object[].
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerExecutedCommand(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
Executed DbCommand ({elapsed}ms) [Parameters=[{parameters}], CommandType='{commandType}', CommandTimeout='{commandTimeout}']{newLine}{commandText}
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnName(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different data types ('{dataType1}' and '{dataType2}').
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoActiveTransaction">
<summary>
The connection does not have any active transactions.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ConflictingRowUpdates">
<summary>
Two entities cannot make conflicting updates to the same row.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.IncorrectDefaultValueType(System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
Cannot set default value '{value}' of type '{valueType}' on property '{property}' of type '{propertyType}' in entity type '{entityType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateDiscriminatorValue(System.Object,System.Object,System.Object)">
<summary>
The discriminator value for '{entityType1}' is '{discriminatorValue}' which is the same for '{entityType2}'. Every concrete entity type in the hierarchy needs to have a unique discriminator value.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameNullabilityMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured with different nullability.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameComputedSqlMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different computed values ('{value1}' and '{value2}').
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameDefaultSqlMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different default values ('{value1}' and '{value2}').
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Migrations.HistoryRepository.InterpretExistsResult(System.Object)">
<returns>true if the table exists; otherwise, false.</returns>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameSequenceOperation.NewName">
<summary>
The new schema name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameSequenceOperation.NewSchema">
<summary>
The new sequence name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameTableOperation.NewSchema">
<summary>
The new schema name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameTableOperation.NewName">
<summary>
The new table name or null if unchanged.
</summary>
</member>
<member name="T:Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch">
<summary>
A <see cref="T:Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch" /> for providers which append an SQL query to find out
how many rows were affected (see <see cref="M:Microsoft.EntityFrameworkCore.Update.UpdateSqlGenerator.AppendSelectAffectedCountCommand(System.Text.StringBuilder,System.String,System.String,System.Int32)" />).
</summary>
</member>
</members>
</doc>

Sorry, the diff of this file is not supported yet

<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.EntityFrameworkCore.Relational</name>
</assembly>
<members>
<member name="M:Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.Migrate(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade)">
<summary>
Applies any pending migrations for the context to the database.
</summary>
<param name="databaseFacade"> The <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade" /> for the context. </param>
</member>
<member name="M:Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.MigrateAsync(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade,System.Threading.CancellationToken)">
<summary>
Asynchronously applies any pending migrations for the context to the database.
</summary>
<param name="databaseFacade"> The <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade" /> for the context. </param>
<param name="cancellationToken"> A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete. </param>
<returns> A task that represents the asynchronous migration operation. </returns>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ModificationFunctionInvalidEntityState(System.Object)">
<summary>
Cannot create a ModificationFunction for an entity in state '{entityState}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UpdateConcurrencyException(System.Object,System.Object)">
<summary>
Database operation expected to affect {expectedRows} row(s) but actually affected {actualRows} row(s). Data may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=527962 for information on understanding and handling optimistic concurrency exceptions.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MultipleProvidersConfigured">
<summary>
Multiple relational database provider configurations found. A context can only be configured to use a single database provider.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoProviderConfigured">
<summary>
No relational database providers are configured. Configure a database provider using OnConfiguring or by creating an ImmutableDbContextOptions with a database provider configured and passing it to the context.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ConnectionAndConnectionString">
<summary>
Both an existing DbConnection and a connection string have been configured. When an existing DbConnection is used the connection string must be set on that connection.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoConnectionOrConnectionString">
<summary>
A relational store has been configured without specifying either the DbConnection or connection string to use.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnsupportedType(System.Object)">
<summary>
No mapping to a relational type can be found for the CLR type '{clrType}'
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalNotInUse">
<summary>
Relational-specific methods can only be used when the context is using a relational database provider.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UpdateStoreException">
<summary>
An error occurred while updating the entries. See the inner exception for details.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.TransactionAlreadyStarted">
<summary>
The connection is already in a transaction and cannot participate in another transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.TransactionAssociatedWithDifferentConnection">
<summary>
The specified transaction is not associated with the current connection. Only transactions associated with the current connection may be used.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerOpeningConnection(System.Object,System.Object)">
<summary>
Opening connection to database '{database}' on server '{server}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerClosingConnection(System.Object,System.Object)">
<summary>
Closing connection to database '{database}' on server '{server}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerBeginningTransaction(System.Object)">
<summary>
Beginning transaction with isolation level '{isolationLevel}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerCommittingTransaction">
<summary>
Committing transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerRollingbackTransaction">
<summary>
Rolling back transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.BadSequenceType">
<summary>
Invalid type for sequence. Valid types are 'Int64' (the default), 'Int32', 'Int16', and 'Byte'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.BadSequenceString">
<summary>
Unable to deserialize sequence from model metadata. See inner exception for details.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MigrationNotFound(System.Object)">
<summary>
The migration '{migrationName}' was not found.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnknownOperation(System.Object,System.Object)">
<summary>
The current migration SQL generator '{sqlGeneratorType}' is unable to generate SQL for operations of type '{operationType}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.InvalidCommandTimeout">
<summary>
The specified CommandTimeout value is not valid. It must be a positive number.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.InvalidMaxBatchSize">
<summary>
The specified MaxBatchSize value is not valid. It must be a positive number.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnableToDiscriminate(System.Object)">
<summary>
Unable to materialize entity of type '{entityType}'. No discriminators were matched.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorPropertyMustBeOnRoot(System.Object)">
<summary>
A discriminator property cannot be set for the entity type '{entityType}' because it is not the root of an inheritance hierarchy.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorPropertyNotFound(System.Object,System.Object)">
<summary>
Unable to set property '{property}' as a discriminator for entity type '{entityType}' because it is not a property of '{entityType}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.AmbientTransaction">
<summary>
An ambient transaction has been detected. Connections opened by Entity Framework will not be enlisted in ambient transactions. To suppress this warning call SuppressAmbientTransactionWarning() when overriding DbContext.OnConfiguring.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.PossibleUnintendedUseOfEquals(System.Object,System.Object)">
<summary>
Possible unintended use of method Equals(object) for arguments of different types: '{left}', '{right}'. This comparison will always return 'false'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.StoredProcedureIncludeNotSupported">
<summary>
The Include operation is not supported when calling a stored procedure.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.GeneratingDown(System.Object)">
<summary>
Generating down script for migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.GeneratingUp(System.Object)">
<summary>
Generating up script for migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ApplyingMigration(System.Object)">
<summary>
Applying migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RevertingMigration(System.Object)">
<summary>
Reverting migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UsingConnection(System.Object,System.Object)">
<summary>
Using database '{database}' on server '{dataSource}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.FromSqlMissingColumn(System.Object)">
<summary>
The required column '{column}' was not present in the results of a 'FromSql' operation.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateTableName(System.Object,System.Object,System.Object)">
<summary>
Cannot use table '{table}' in schema '{schema}' for entity '{entityType}' since it is being used for another entity.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorEntityTypeNotDerived(System.Object,System.Object)">
<summary>
Cannot configure the discriminator value for entity type '{entityType}' because it doesn't derive from '{rootEntityType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorValueIncompatible(System.Object,System.Object,System.Object)">
<summary>
Cannot set discriminator value '{value}' for discriminator property '{discriminator}' because it is not assignable to property of type '{discriminatorType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorForValue(System.Object,System.Object)">
<summary>
Cannot set discriminator value for entity type '{entityType}' because the root entity type '{rootEntityType}' doesn't have a discriminator property set.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorProperty(System.Object)">
<summary>
The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator property configured.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorValue(System.Object)">
<summary>
The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator value configured.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ClientEvalDisabled(System.Object)">
<summary>
Unable to compile the LINQ expression '{expression}' because it requires client evaluation, which is disabled. Either enable client evaluation or rewrite the query to not require client evaluation.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ClientEvalWarning(System.Object)">
<summary>
The LINQ expression '{expression}' could not be translated and will be evaluated locally.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MissingParameterValue(System.Object)">
<summary>
No value provided for required parameter '{parameter}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ParameterNotObjectArray(System.Object)">
<summary>
Cannot use the value provided for parameter '{parameter}' because it isn't assignable to type object[].
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerExecutedCommand(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
Executed DbCommand ({elapsed}ms) [Parameters=[{parameters}], CommandType='{commandType}', CommandTimeout='{commandTimeout}']{newLine}{commandText}
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnName(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different data types ('{dataType1}' and '{dataType2}').
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoActiveTransaction">
<summary>
The connection does not have any active transactions.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ConflictingRowUpdates">
<summary>
Two entities cannot make conflicting updates to the same row.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.IncorrectDefaultValueType(System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
Cannot set default value '{value}' of type '{valueType}' on property '{property}' of type '{propertyType}' in entity type '{entityType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateDiscriminatorValue(System.Object,System.Object,System.Object)">
<summary>
The discriminator value for '{entityType1}' is '{discriminatorValue}' which is the same for '{entityType2}'. Every concrete entity type in the hierarchy needs to have a unique discriminator value.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameNullabilityMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured with different nullability.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameComputedSqlMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different computed values ('{value1}' and '{value2}').
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameDefaultSqlMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different default values ('{value1}' and '{value2}').
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Migrations.HistoryRepository.InterpretExistsResult(System.Object)">
<returns>true if the table exists; otherwise, false.</returns>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameSequenceOperation.NewName">
<summary>
The new schema name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameSequenceOperation.NewSchema">
<summary>
The new sequence name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameTableOperation.NewSchema">
<summary>
The new schema name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameTableOperation.NewName">
<summary>
The new table name or null if unchanged.
</summary>
</member>
<member name="T:Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch">
<summary>
A <see cref="T:Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch" /> for providers which append an SQL query to find out
how many rows were affected (see <see cref="M:Microsoft.EntityFrameworkCore.Update.UpdateSqlGenerator.AppendSelectAffectedCountCommand(System.Text.StringBuilder,System.String,System.String,System.Int32)" />).
</summary>
</member>
</members>
</doc>

Sorry, the diff of this file is not supported yet

<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.EntityFrameworkCore.Relational</name>
</assembly>
<members>
<member name="M:Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.Migrate(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade)">
<summary>
Applies any pending migrations for the context to the database.
</summary>
<param name="databaseFacade"> The <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade" /> for the context. </param>
</member>
<member name="M:Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.MigrateAsync(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade,System.Threading.CancellationToken)">
<summary>
Asynchronously applies any pending migrations for the context to the database.
</summary>
<param name="databaseFacade"> The <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade" /> for the context. </param>
<param name="cancellationToken"> A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete. </param>
<returns> A task that represents the asynchronous migration operation. </returns>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ModificationFunctionInvalidEntityState(System.Object)">
<summary>
Cannot create a ModificationFunction for an entity in state '{entityState}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UpdateConcurrencyException(System.Object,System.Object)">
<summary>
Database operation expected to affect {expectedRows} row(s) but actually affected {actualRows} row(s). Data may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=527962 for information on understanding and handling optimistic concurrency exceptions.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MultipleProvidersConfigured">
<summary>
Multiple relational database provider configurations found. A context can only be configured to use a single database provider.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoProviderConfigured">
<summary>
No relational database providers are configured. Configure a database provider using OnConfiguring or by creating an ImmutableDbContextOptions with a database provider configured and passing it to the context.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ConnectionAndConnectionString">
<summary>
Both an existing DbConnection and a connection string have been configured. When an existing DbConnection is used the connection string must be set on that connection.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoConnectionOrConnectionString">
<summary>
A relational store has been configured without specifying either the DbConnection or connection string to use.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnsupportedType(System.Object)">
<summary>
No mapping to a relational type can be found for the CLR type '{clrType}'
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalNotInUse">
<summary>
Relational-specific methods can only be used when the context is using a relational database provider.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UpdateStoreException">
<summary>
An error occurred while updating the entries. See the inner exception for details.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.TransactionAlreadyStarted">
<summary>
The connection is already in a transaction and cannot participate in another transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.TransactionAssociatedWithDifferentConnection">
<summary>
The specified transaction is not associated with the current connection. Only transactions associated with the current connection may be used.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerOpeningConnection(System.Object,System.Object)">
<summary>
Opening connection to database '{database}' on server '{server}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerClosingConnection(System.Object,System.Object)">
<summary>
Closing connection to database '{database}' on server '{server}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerBeginningTransaction(System.Object)">
<summary>
Beginning transaction with isolation level '{isolationLevel}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerCommittingTransaction">
<summary>
Committing transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerRollingbackTransaction">
<summary>
Rolling back transaction.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.BadSequenceType">
<summary>
Invalid type for sequence. Valid types are 'Int64' (the default), 'Int32', 'Int16', and 'Byte'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.BadSequenceString">
<summary>
Unable to deserialize sequence from model metadata. See inner exception for details.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MigrationNotFound(System.Object)">
<summary>
The migration '{migrationName}' was not found.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnknownOperation(System.Object,System.Object)">
<summary>
The current migration SQL generator '{sqlGeneratorType}' is unable to generate SQL for operations of type '{operationType}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.InvalidCommandTimeout">
<summary>
The specified CommandTimeout value is not valid. It must be a positive number.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.InvalidMaxBatchSize">
<summary>
The specified MaxBatchSize value is not valid. It must be a positive number.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UnableToDiscriminate(System.Object)">
<summary>
Unable to materialize entity of type '{entityType}'. No discriminators were matched.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorPropertyMustBeOnRoot(System.Object)">
<summary>
A discriminator property cannot be set for the entity type '{entityType}' because it is not the root of an inheritance hierarchy.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorPropertyNotFound(System.Object,System.Object)">
<summary>
Unable to set property '{property}' as a discriminator for entity type '{entityType}' because it is not a property of '{entityType}'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.AmbientTransaction">
<summary>
An ambient transaction has been detected. Connections opened by Entity Framework will not be enlisted in ambient transactions. To suppress this warning call SuppressAmbientTransactionWarning() when overriding DbContext.OnConfiguring.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.PossibleUnintendedUseOfEquals(System.Object,System.Object)">
<summary>
Possible unintended use of method Equals(object) for arguments of different types: '{left}', '{right}'. This comparison will always return 'false'.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.StoredProcedureIncludeNotSupported">
<summary>
The Include operation is not supported when calling a stored procedure.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.GeneratingDown(System.Object)">
<summary>
Generating down script for migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.GeneratingUp(System.Object)">
<summary>
Generating up script for migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ApplyingMigration(System.Object)">
<summary>
Applying migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RevertingMigration(System.Object)">
<summary>
Reverting migration '{migration}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.UsingConnection(System.Object,System.Object)">
<summary>
Using database '{database}' on server '{dataSource}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.FromSqlMissingColumn(System.Object)">
<summary>
The required column '{column}' was not present in the results of a 'FromSql' operation.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateTableName(System.Object,System.Object,System.Object)">
<summary>
Cannot use table '{table}' in schema '{schema}' for entity '{entityType}' since it is being used for another entity.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorEntityTypeNotDerived(System.Object,System.Object)">
<summary>
Cannot configure the discriminator value for entity type '{entityType}' because it doesn't derive from '{rootEntityType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DiscriminatorValueIncompatible(System.Object,System.Object,System.Object)">
<summary>
Cannot set discriminator value '{value}' for discriminator property '{discriminator}' because it is not assignable to property of type '{discriminatorType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorForValue(System.Object,System.Object)">
<summary>
Cannot set discriminator value for entity type '{entityType}' because the root entity type '{rootEntityType}' doesn't have a discriminator property set.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorProperty(System.Object)">
<summary>
The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator property configured.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoDiscriminatorValue(System.Object)">
<summary>
The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator value configured.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ClientEvalDisabled(System.Object)">
<summary>
Unable to compile the LINQ expression '{expression}' because it requires client evaluation, which is disabled. Either enable client evaluation or rewrite the query to not require client evaluation.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ClientEvalWarning(System.Object)">
<summary>
The LINQ expression '{expression}' could not be translated and will be evaluated locally.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.MissingParameterValue(System.Object)">
<summary>
No value provided for required parameter '{parameter}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ParameterNotObjectArray(System.Object)">
<summary>
Cannot use the value provided for parameter '{parameter}' because it isn't assignable to type object[].
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.RelationalLoggerExecutedCommand(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
Executed DbCommand ({elapsed}ms) [Parameters=[{parameters}], CommandType='{commandType}', CommandTimeout='{commandTimeout}']{newLine}{commandText}
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnName(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different data types ('{dataType1}' and '{dataType2}').
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.NoActiveTransaction">
<summary>
The connection does not have any active transactions.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.ConflictingRowUpdates">
<summary>
Two entities cannot make conflicting updates to the same row.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.IncorrectDefaultValueType(System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
Cannot set default value '{value}' of type '{valueType}' on property '{property}' of type '{propertyType}' in entity type '{entityType}'.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateDiscriminatorValue(System.Object,System.Object,System.Object)">
<summary>
The discriminator value for '{entityType1}' is '{discriminatorValue}' which is the same for '{entityType2}'. Every concrete entity type in the hierarchy needs to have a unique discriminator value.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameNullabilityMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured with different nullability.
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameComputedSqlMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different computed values ('{value1}' and '{value2}').
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Internal.RelationalStrings.DuplicateColumnNameDefaultSqlMismatch(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
'{entityType1}.{property1}' and '{entityType2}.{property2}' are both mapped to column '{columnName}' in '{table}' but are configured to use different default values ('{value1}' and '{value2}').
</summary>
</member>
<member name="M:Microsoft.EntityFrameworkCore.Migrations.HistoryRepository.InterpretExistsResult(System.Object)">
<returns>true if the table exists; otherwise, false.</returns>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameSequenceOperation.NewName">
<summary>
The new schema name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameSequenceOperation.NewSchema">
<summary>
The new sequence name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameTableOperation.NewSchema">
<summary>
The new schema name or null if unchanged.
</summary>
</member>
<member name="P:Microsoft.EntityFrameworkCore.Migrations.Operations.RenameTableOperation.NewName">
<summary>
The new table name or null if unchanged.
</summary>
</member>
<member name="T:Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch">
<summary>
A <see cref="T:Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch" /> for providers which append an SQL query to find out
how many rows were affected (see <see cref="M:Microsoft.EntityFrameworkCore.Update.UpdateSqlGenerator.AppendSelectAffectedCountCommand(System.Text.StringBuilder,System.String,System.String,System.Int32)" />).
</summary>
</member>
</members>
</doc>

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet