دوره مقدماتی ASP.NET Core از Microsoft Virtual Academy
302, Found
https://borntolearn.mslearn.net/b/mva/posts/get-on-board-with-cross-platform-asp-net-core icon

Explore ASP.NET Core SDK and tooling, look at .NET Core CLI, and learn how to build an ASP.NET Core app with Razor Pages MVC. Plus, get the details on logging and diagnostics. Find lots of cross-platform goodness and get .NET ready, as you learn more about this framework for building modern cloud-based web apps. Build your first ASP.NET project, and gear up for the intermediate ASP.NET Core course. 

دوره مقدماتی ASP.NET Core از Microsoft Virtual Academy
کتابخانه MediatR
200, OK
https://github.com/jbogard/MediatR icon

Simple mediator implementation in .NET. In-process messaging with no dependencies.
Supports request/response, commands, queries, notifications and events, synchronous and async with intelligent dispatching via C# generic variance.

You should install MediatR with NuGet:

 Install-Package MediatR 

Or via the .NET Core command line interface:

 dotnet add package MediatR 
کتابخانه MediatR
مدل بایندر برای تاریخ شمسی در ASP.NET Core
200, OK
https://gist.github.com/AhmadRajabi/7abab2c05911550c3a4d9a1522afd351 icon

مدل بایندر برای تاریخ شمسی

How To Use:

//In Startup.cs:
    
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvcCore(options =>
        {
            options.ModelBinderProviders.Insert(0, new PersianDateModelBinderProvider());
        });
    }

//In Actions:
    
     public async Task<IActionResult> SampleAction(DateTime birthDate)
        {
            if (ModelState.IsValid)
            {
                //birthDate is valid
            }
            else
            {
                birthDate is wrong
            }

            ...
        }
مدل بایندر برای تاریخ شمسی در ASP.NET Core
Asp.net Core Tag Helper برای Bootstrap
301, MovedPermanently
https://www.red-gate.com/simple-talk/dotnet/asp-net/asp-net-core-tag-helpers-bootstrap/ icon

The ASP.NET Core tag helpers improve on the HTML templated helpers in ASP.NET MVC 5. ASP.NET Core comes with some useful stock tag helpers for common tasks such as creating custom elements or extending existing HTML elements, but their use can be extended to making a framework such as Bootstrap easier to work with. Dino shows how helpers are used, and demonstrates a Bootstrap Modal Tag Helper 

Asp.net Core Tag Helper برای Bootstrap
نسخه 2 Asp.net Core فروشگاه ساز VirtoCommerc
301, MovedPermanently
https://github.com/VirtoCommerce/vc-storefront-core icon
فریم ورک‌های استفاده شده
  • ASP.NET MVC Core 2.0.0 on .NET Core 2.0.0
  • ASP.NET Identity Core 2.0.0
  • REST services clients generation with using Microsoft AutoRest
  • Liquid view engine based on DotLiquid
  • LibSaasHost for processing scss stylesheets in runtime

  • Multi-Store support
  • Multi-Language support
  • Multi-Currency support
  • Multi-Themes support
  • Faceted search support
  • SEO friendly routing
نسخه 2 Asp.net Core فروشگاه ساز  VirtoCommerc
13 ویژگی برتر ASP.NET Core که لازم است بدانید
200, OK
https://stackify.com/asp-net-core-features/ icon

ASP.NET is one of the most successful web application development frameworks by Microsoft. With every update, new and extended features are added that help developers deploy highly scalable and high-performance web applications.

When coupled with application monitoring and other performance tools, such as a profiler, ASP.NET becomes a powerful solution for building incredible apps.

Within the framework itself, there are myriad features to help you overcome common development challenges, do more with your apps, and boost performance. 

13 ویژگی برتر ASP.NET Core که لازم است بدانید
اجرای اپلیکیشن های ASP.NET Core بر روی Windows Subsystem for Linux
301, MovedPermanently
http://gunnarpeipman.com/2017/11/linux-on-windows-aspnet-core/ icon

Windows 10 has something called Windows Subsystem for Linux and this something enables us to run Linux applications on Windows 10 using Linux without need for Hyper-V or other virtual machines. When building multi-platform applications like my open-source TemperatureStation solution then having Linux right there for testing comes very handy. This blog post shows how to get Linux running on Windows, how to install .NET Core and how to run web applications on Linux. 

اجرای اپلیکیشن های ASP.NET Core بر روی Windows Subsystem for Linux