ASP.NET Core
13K subscribers
2 photos
313 links
Download Telegram
By default, ASP.NET Core Identity doesn't require mail addresses unicity for the users, so several users can have the same mail. To change this behavior, this is very simple. You have just to configure the policy you want in your application's startup class.

https://adrientorris.github.io/aspnet-core/identity/configure-mail-unicity.html
Entity Framework is Microsoft’s flagship Object/Relation Mapper, and the recommended way to access relational databases. Entity Framework Core is a complete rewrite from the “classic” Entity Framework, building on the new multiplatform .NET Core framework and adding the ability to connect to nonrelational data sources while keeping the features that made Entity Framework Code First so popular. In Entity Framework Core Succinctly, join Ricardo Peres to explore this new version of the O/RM, from getting set up to avoiding common traps.

https://www.syncfusion.com/ebooks/entity_frame_work_core_succinctly
Quickpaste lets you host your own pastebin to quickly send or request files/text from others just by sending a link.
Quickpaste uses the ASP.NET Core web framework and runs on the .NET Core 2 Runtime.
https://github.com/Beyhum/quickpaste
How to create an Angular 5 app with Visual Studio 2017

Earlier, I posted about creating an Angular 4 app with VS 2017 and also posted a guide to upgrade an Angular 4 app to Angular 5 with VS 2017. Now you can also create Angular 5 app with Visual Studio 2017, without installing any third-party extensions or templates. This post talks about how to create […]
The post How to create an Angular 5 app with Visual Studio 2017 appeared first on Talking Dotnet.


http://www.talkingdotnet.com/how-to-create-an-angular-5-app-with-visual-studio-2017/
Microsoft Announce General Availability of Azure Redis Cache Geo-Replication

Microsoft recently announced the general availability of geo-replication support for the Azure Redis Cache service, Microsoft’s hosted implementation of the open-source Redis cache. The announcement follows a public preview that was announced in June 2017.
By Martin Abbott

http://www.infoq.com/news/2018/03/azure-redis-cache-geo-ga?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=.NET
Blazor: a technical introduction

Steve Sanderson provide some deeper technical details for those interested in how Blazor, a framework for browser-based applications written in .NET, running under WebAssembly, actually works.

http://blog.stevensanderson.com/2018/02/06/blazor-intro/
This library provides F# style discriminated unions for C#, using a custom type OneOf<T0, ... Tn>. An instance of this type holds a single value, which is one of the types in its generic argument list. https://github.com/mcintyre321/OneOf/