WCF Best Practice Reference Project

For WPF, there is a Microsoft Prism project .

Prism provides a guide designed to help you design and build rich, flexible, and easy-to-maintain Windows Presentation Foundation (WPF) desktop applications, Silverlight Rich Internet Applications (RIA), and Windows Phone 7 Applications

I was wondering if there is a similar project (reference implementation) intended for software developers creating WCF applications.

In our main internal project (rich .NET WinForms client application) we do not talk directly with the database, but instead receive and update data using ASP.Net web services, which we also control. Our current installation gives us some bottlenecks.
For a new small project, we want to try WCF.

Objective question: where can I find a non-core base WCF project?

+4
source share
2 answers

There is nothing like Prism provided by Microsoft. WCF usually only makes a thin layer on top of other logic.

You can check out this guide for Visual Studio:

You can also check out different articles about best practices:

+4
source

You can find some targeted examples in the Visual Studio 2010 and .NET Framework 4 tutorial.

It contains several projects demonstrating key features. This is sometimes more relevant than a large project containing a lot of information.

http://www.microsoft.com/downloads/en/details.aspx?familyid=752CB725-969B-4732-A383-ED5740F02E93&displaylang=en

+2
source

Source: https://habr.com/ru/post/1341600/


All Articles