From cd21f4afae5d874b9f028df891d7d8c4a2c6105c Mon Sep 17 00:00:00 2001 From: maembe Date: Sat, 17 Apr 2021 20:53:34 -0500 Subject: [PATCH] Update migrate-modern-applications.md Fixes issue #23763 Fixed a couple spelling and grammar issues, along with some small edits to improve readability. --- .../modernize-desktop/migrate-modern-applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/modernize-desktop/migrate-modern-applications.md b/docs/architecture/modernize-desktop/migrate-modern-applications.md index be63f30e7b9ef..0f69912dc9ea2 100644 --- a/docs/architecture/modernize-desktop/migrate-modern-applications.md +++ b/docs/architecture/modernize-desktop/migrate-modern-applications.md @@ -151,7 +151,7 @@ to Microsoft Access using the library. ## Consuming services -With the raise of service-oriented architectures, desktop applications began to evolve from a client-server model to the three-layer approach. In the client-server approach, a direct database connection is established from the client holding the business logic usually inside a single EXE file. On the other hand, the three-layer approach establishes an intermediate service layer implementing business logic and database access allowing for better security, scalability, and reusability. Instead of working directly with datasets of data, the layer approach relies in a set of services implementing contracts and types objects as a way to implement data transfer. +With the rise of service-oriented architectures, desktop applications began to evolve from a client-server model to the three-layer approach. In the client-server approach, a direct database connection is established from the client holding the business logic, usually inside a single EXE file. On the other hand, the three-layer approach establishes an intermediate service layer implementing business logic and database access, allowing for better security, scalability, and reusability. Instead of working directly with underlying data, the layered approach relies on a set of services implementing contracts and typed objects for data transfer. If you have a desktop application using a WCF service and you want to migrate it to .NET, there are some things to consider.