Skip to content

Commit 428ea17

Browse files
Hammannroji
authored andcommitted
Fix wording for clarity in best practices section
Corrected the wording from 'specific versions' to 'specific version' for clarity.
1 parent d772dbb commit 428ea17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entity-framework/core/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ While EF Core is good at abstracting many programming details, there are some be
4747

4848
* Intermediate-level knowledge or higher of the underlying database server is essential to architect, debug, profile, and migrate data in high performance production apps. For example, knowledge of primary and foreign keys, constraints, indexes, normalization, DML and DDL statements, data types, profiling, etc.
4949
* Functional and integration testing: It's important to replicate the production environment as closely as possible to:
50-
* Find issues in the app that only show up when using a specific versions or edition of the database server.
50+
* Find issues in the app that only show up when using a specific version or edition of the database server.
5151
* Catch breaking changes when upgrading EF Core and other dependencies. For example, adding or upgrading frameworks like ASP.NET Core, OData, or AutoMapper. These dependencies can affect EF Core in unexpected ways.
5252
* Performance and stress testing with representative loads. The naïve usage of some features doesn't scale well. For example, multiple collections Includes, heavy use of lazy loading, conditional queries on non-indexed columns, massive updates and inserts with store-generated values, lack of concurrency handling, large models, inadequate cache policy.
5353
* Security review: For example, handling of connection strings and other secrets, database permissions for non-deployment operation, input validation for raw SQL, encryption for sensitive data. See [Secure authentication flows](/aspnet/core/security/#secure-authentication-flows) for secure configuration and authentication flow.

0 commit comments

Comments
 (0)