نقشه راه برنامه نویسی ASP.NET Core 2019
200, OK
https://github.com/MoienTajik/AspNetCore-Developer-Roadmap icon

Roadmap to becoming a ASP.NET Core developer in 2019 

اگر میخواهید بدانید چه سرفصل‌ها و موضوعاتی را باید/بهتره برای حرفه ای شدن در ASP.NET Core  یاد بگیرید و یا از کجا شروع کنید، این نقشه راه برای شماست.

نقشه راه برنامه نویسی ASP.NET Core 2019
نمونه مثالی از ASP.NET Core و Entity Framework Core به همراه معماری CQRS
301, MovedPermanently
https://github.com/JasonGT/NorthwindTraders icon

Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core. The architecture and design of the project is explained in the video:

Clean Architecture with ASP.NET Core 2.1  
نمونه مثالی از ASP.NET Core و Entity Framework Core به همراه معماری CQRS
برنامه ASP.NET Core مدیریت پارکینگ مبتنی بر CQRS
200, OK
https://github.com/EdwinVW/pitstop icon
This repo contains a sample application based on a Garage Management System for PitStop - a fictitious garage. The primary goal of this sample is to demonstrate several Web-Scale Architecture concepts like: Microservices, CQRS, Event Sourcing, Domain Driven Design (DDD), Eventual Consistency.
 
برنامه ASP.NET Core مدیریت پارکینگ مبتنی بر CQRS
نگاهی به کارآیی ASP.NET Core 2.2 در مقایسه با سایر فریم ورک‌ها و پلتفرم‌های مشابه
200, OK
https://www.ageofascent.com/2019/02/04/asp-net-core-saturating-10gbe-at-7-million-requests-per-second/ icon

ASP.NET Core: Saturating 10GbE at 7+ million request/s



In these “platform” comparisons that’s:
- x1.78 faster than ngnix
- x2.93 faster than Java’s Servlet (x7.76 faster than Servlet on Tomcat)
- x7.36 faster than Golang’s “net/http” package
- x8.06 faster than node.js running as a cluster of 28 processes (as node.js is single threaded)
 

نگاهی به کارآیی ASP.NET Core 2.2 در مقایسه با سایر فریم ورک‌ها و پلتفرم‌های مشابه
کار با HubContext در ASP.NET Core SignalR
200, OK
https://codeopinion.com/practical-asp-net-core-hubcontext/ icon

In this section, I’m going to cover how you can use SignalR outside of a Hub. In most asp.net core applications, you will likely want to communicate with the connect clients from within your application but outside of a Hub. You can accomplish this by using the HubContext.

For example, an ASP.NET Core MVC Controller or any other class that is instantiated by ASP.NET Core’s Dependency Injection.

The HubContext allows you to send messages to your connected clients. It has many of the same features to communicate with clients as when you are inside of a Hub.  

کار با HubContext در ASP.NET Core SignalR