Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriySvyryd committed Sep 28, 2020
1 parent 3c2fa20 commit f4cd446
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/EFCore.Relational/Properties/RelationalStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@
<comment>Warning RelationalEventId.MigrationAttributeMissingWarning string</comment>
</data>
<data name="LogMultipleCollectionIncludeWarning" xml:space="preserve">
<value>Compiling a query which loads related collections for more than one collection navigation either via 'Include' or through projection but no 'QuerySplittingBehavior' has been configured. By default Entity Framework will use 'QuerySplittingBehavior.SingleQuery' which can potentially result in slow query performance. See https://go.microsoft.com/fwlink/?linkid=2134277 for more information. To identify the query that's triggering this warning call 'ConfigureWarnings(w =&gt; w.Throw(RelationalEventId.MultipleCollectionIncludeWarning)).'</value>
<value>Compiling a query which loads related collections for more than one collection navigation either via 'Include' or through projection but no 'QuerySplittingBehavior' has been configured. By default Entity Framework will use 'QuerySplittingBehavior.SingleQuery' which can potentially result in slow query performance. See https://go.microsoft.com/fwlink/?linkid=2134277 for more information. To identify the query that's triggering this warning call 'ConfigureWarnings(w =&gt; w.Throw(RelationalEventId.MultipleCollectionIncludeWarning))'.</value>
<comment>Warning RelationalEventId.MultipleCollectionIncludeWarning</comment>
</data>
<data name="LogNamedIndexAllPropertiesNotToMappedToAnyTable" xml:space="preserve">
Expand Down
14 changes: 7 additions & 7 deletions src/EFCore/Properties/CoreStrings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/EFCore/Properties/CoreStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@
<value>The [ForeignKey] attribute for the navigation '{navigation}' cannot be specified on the entity type '{principalType}' since it represents a one-to-many relationship. Move the [ForeignKey] attribute to a property on '{dependentType}'.</value>
</data>
<data name="FkAttributeOnPropertyNavigationMismatch" xml:space="preserve">
<value>The [ForeignKey] attributes on property '{property}' and navigation '{navigation}' in entity type '{entityType}' do not point at each other. Make sure the value of the [ForeignKey] attribute on the property mathes the navigation name, and the value of the [ForeignKey] attribute on the navigation mathes the foreign key property name or remove one of them.</value>
<value>The [ForeignKey] attributes on property '{property}' and navigation '{navigation}' in entity type '{entityType}' do not point at each other. Make sure the value of the [ForeignKey] attribute on the property matches the navigation name, and the value of the [ForeignKey] attribute on the navigation matches the foreign key property name or remove one of them.</value>
</data>
<data name="FkAttributeOnSkipNavigation" xml:space="preserve">
<value>The [ForeignKey] attribute cannot be specified on the skip navigation '{entityType}'.'{navigation}'. Configure the foreign key properties in 'OnModelCreating' instead.</value>
Expand All @@ -457,7 +457,7 @@
<value>The number of properties specified for the foreign key {foreignKeyProperties} on entity type '{dependentType}' does not match the number of properties in the principal key {principalKeyProperties} on entity type '{principalType}'.</value>
</data>
<data name="ForeignKeyInUseSkipNavigation" xml:space="preserve">
<value>Cannot remove the foreign key {foreigKeyProperties} from entity type '{entityType}' because it is referenced by a skip navigation '{navigation}' on entity type '{navigationEntityType}'. All referencing skip navigation must be removed before the referenced foreign key can be removed.</value>
<value>Cannot remove the foreign key {foreignKeyProperties} from entity type '{entityType}' because it is referenced by a skip navigation '{navigation}' on entity type '{navigationEntityType}'. All referencing skip navigations must be removed before the referenced foreign key can be removed.</value>
</data>
<data name="ForeignKeyPropertiesWrongEntity" xml:space="preserve">
<value>The specified foreign key properties {foreignKeyProperties} are not declared on the entity type '{entityType}'. Ensure that foreign key properties are declared on the target entity type.</value>
Expand Down Expand Up @@ -599,7 +599,7 @@
<value>Cannot create a DbSet for '{typeName}' because it is configured as an owned entity type and must be accessed through its owning entity type '{ownerType}'.</value>
</data>
<data name="InvalidSetTypeWeak" xml:space="preserve">
<value>Cannot create a DbSet for '{typeName}' because it is mapped to multiple entity types with defininf navigations and should be accessed through the owning entities.</value>
<value>Cannot create a DbSet for '{typeName}' because it is mapped to multiple entity types with defining navigations and should be accessed through the owning entities.</value>
</data>
<data name="InvalidSwitch" xml:space="preserve">
<value>Invalid {name}: {value}</value>
Expand Down Expand Up @@ -997,7 +997,7 @@
<value>The type of navigation '{1_entityType}.{0_navigation}' is '{foundType}' which is an array type. Collection navigations cannot be arrays.</value>
</data>
<data name="NavigationBadType" xml:space="preserve">
<value>The type of navigation '{1_entityType}.{0_navigation}' is '{foundType}' which does not implement ICollection&lt;{targetType}&gt;. Collection navigations must implement ICollection&lt;&gt; of the target type.</value>
<value>The type of navigation '{1_entityType}.{0_navigation}' is '{foundType}' which does not implement 'ICollection&lt;{targetType}&gt;'. Collection navigations must implement 'ICollection&lt;&gt;' of the target type.</value>
</data>
<data name="NavigationCannotCreateType" xml:space="preserve">
<value>The type of navigation '{1_entityType}.{0_navigation}' is '{foundType}' for which it was not possible to create a concrete instance. Either initialize the property before use, add a public parameterless constructor to the type, or use a type which can be assigned a HashSet&lt;&gt; or List&lt;&gt;.</value>
Expand Down

0 comments on commit f4cd446

Please sign in to comment.