doc/articles/guides/silverlight-migration/08-data-access-overview.md
The Silverlight Business Application template utilizes a WCF RIA Services backend project to deliver the Silverlight application via a static or a dynamic page, and to provide access to services. These services use WCF (Windows Communication Foundation) and a custom binding due to restrictions in the network protocols that can be accessed from the browser at that time. There are two types of service that are supported:
The following services related to authentication are included in the template by default:
AuthenticationService - a service that validates a user name and password and returns the logged in user IPrincipal via the ASP.NET Forms Authentication implementation.
[!TIP] This can be customized to use data defined in a custom database as demonstrated in the TimeEntryRia sample.
UserRegistrationService - a service that allowed new users to register themselves.
[!NOTE] This made more sense for consumer style applications - enterprise applications typically manage user accounts via administrators.
Unfortunately, WCF itself has been discontinued, although there are, of course, alternatives such as ASP.NET Core Web APIs, gRPC, an open source version of WCF, etc. There is no direct replacement for WCF RIA services, although some scaffolding solutions exist to reduce the amount of boilerplate code required for CRUD operations.
[!TIP] In the sample migration of TimeEntryRIA to Uno, ASP.NET Core Web APIs were used. You can find a full article discussing how to consume a web service with Uno below:
[!NOTE] You can learn more about alternate service technologies here:
In the sample application migration, REST-based services using ASP.NET Core Web APIs were chosen.