@manhng

Welcome to my blog!

ASP.NET Core 2.x

July 3, 2018 20:01

eBooks (edit)

https://www.microsoft.com/net/learn/architecture

SignalR

https://www.codemag.com/Article/1807061/Build-Real-time-Applications-with-ASP.NET-Core-SignalR

ASP.NET Core 2 with Facebook

https://www.c-sharpcorner.com/article/authentication-using-facebook-in-asp-net-core-2-0/

https://github.com/blakecodes/Angular5-ASP.NET-JWT-Authentication

EF Core 2.x

Getting Started with EF Core on ASP.NET Core with a New database
https://docs.microsoft.com/en-us/ef/core/get-started/aspnetcore/new-db

Code First approach in .Net Core(2.0): CRUD Operations
https://neelbhatt.com/2018/01/14/code-first-migration-in-net-core2-0-crud-operations/

https://www.youtube.com/watch?v=nmUXGzDeh0U
https://www.youtube.com/watch?v=5khuEI7SCk8

Code Samples
https://github.com/NeelBhatt/CodeFirstDotNetCore
https://github.com/MiroslavMikus/LibraryManagement

Getting Started With Entity Framework Core - ASP.NET Core
https://www.learnentityframeworkcore.com/walkthroughs/aspnetcore-application

Getting Started with Entity Framework Core: Building an ASP.NET Core Application with Web API and Code First Development
https://www.codeproject.com/Articles/1218427/Getting-Started-with-Entity-Framework-Core-Buildin

Code First Entity Framework Core
https://weblogs.asp.net/senthil/code-first-ef-core

ASP.NET Core 2.x

D:\DotNetCore

ES6
http://es6katas.org/

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" />
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
</ItemGroup>
</Project>

Microsoft.VisualStudio.Web.CodeGeneration.Tools
https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-mvc-app-xplat/adding-model?view=aspnetcore-2.1

http://nugetmusthaves.com/

Install-Package Microsoft.VisualStudio.Web.CodeGeneration.Tools
Install-Package Microsoft.EntityFrameworkCore.Design
Install-Package Microsoft.EntityFrameworkCore.SqlServer
Install-Package Microsoft.EntityFrameworkCore.Tools
Install-Package Microsoft.VisualStudio.Web.CodeGeneration.Design


This repository is set of ASP.NET Core projects and scripts. https://dotnetthoughts.net
https://github.com/anuraj/AspNetCoreSamples/

Upgrade ASP.NET Core and Entity Framework Core 2.0 to 2.1
https://pgroene.wordpress.com/2018/03/21/upgrade-asp-net-core-and-ef-core-2-0-to-2-1-preview1/

https://blogs.msdn.microsoft.com/dotnet/2018/02/02/entity-framework-core-2-1-roadmap/
https://blogs.msdn.microsoft.com/webdev/2018/02/02/asp-net-core-2-1-roadmap/

Documentation for ASP.NET and ASP.NET Core
https://github.com/aspnet/Docs/tree/master/aspnetcore/migration/1x-to-2x/samples

https://codegists.com/code/ef-core-2.0/

Creating a Database with Code First in EF Core
https://docs.oracle.com/cd/E17952_01/connector-net-en/connector-net-entityframework-core-example.html

Code First Migration in .Net Core 2.0
https://github.com/ljcorreia/asp-mvc-invoice-sample/
https://github.com/NeelBhatt/CodeFirstDotNetCore

ASP.NET Core 1.0
https://rajeeshmenoth.wordpress.com/2017/02/20/code-first-migration-asp-net-core-mvc-6-with-ef-core/
https://gallery.technet.microsoft.com/Code-First-Migration-bfcbc518
https://rajeeshmenoth.wordpress.com/2017/02/20/code-first-migration-asp-net-core-mvc-6-with-ef-core/

https://www.cloudscribe.com/docs/cloudscribe-core
cloudscribe.Core
The cloudscribe .Core set of libraries provides management for users, roles, and claims for either a single web site or a multi-tenant aka multi-site installation using a single database. The users, roles, and claims are all tagged with a SiteId, the site is resolved first and then all data is retrieved using the SiteId, so that each site has separate users, roles, and claims. It also supports the concept of "Related Sites Mode" which allows you to use one set of users, roles, and claims in all the tenant sites. You can also disable the multi-tenancy feature if you only want a single site, but the data is still tagged with a SiteId, so you could always enable it later if you change your mind.

ASP.NET Core multi-tenant web application foundation with management for sites, users, roles, claims and more
https://github.com/cloudscribe/cloudscribe

Complete List of cloudscribe Libraries
https://www.cloudscribe.com/docs/complete-list-of-cloudscribe-libraries

Some Lessons Learned Updating From Entity Framework Core 1.x to 2.x
https://www.joeaudette.com/blog/2017/08/07/some-lessons-learned-updating-from-entity-framework-core-1x-to-2x

Example project of a simple ASP.NET MVC Core website using Sqlite, Mysql and Postgres
https://github.com/ruidfigueiredo/DataAccessTutorial.Web

.Net Configuration Model - This project tries to use examples to show how the .Net Configuration Model have changed over the years from .Net Framework to .Net Core most recently.
https://github.com/ljcorreia/.NetConfigurationModel/

Sample implementation of an OAuth2 Authorization Server
https://github.com/ljcorreia/AuthorizationServer


https://courses.wilderminds.com/p/bootstrap-4-by-example
https://courses.wilderminds.com/p/font-awesome-5


https://weblogs.asp.net/senthil/code-first-ef-core
Microsoft.EntityFrameworkCore.SqlServer
Microsoft.EntityFrameworkCore.Tools

Install-Package Microsoft.EntityFrameworkCore.SqlServer
Install-Package Microsoft.EntityFrameworkCore.Tools
Install-Package Microsoft.VisualStudio.Web.CodeGeneration.Design

https://github.com/NeelBhatt/CodeFirstDotNetCore/

+ Employee
+ IMyDbContext.cs
+ MyDbContextFactory.cs

Add-Migration
Drop-Database
Get-DbContext
Scaffold-DbContext
Script-Migrations
Update-Database

Migrate from 1.x to 2.x
https://docs.microsoft.com/en-us/aspnet/core/migration/1x-to-2x/
https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/dbcontext-creation
https://docs.microsoft.com/en-us/ef/core/get-started/aspnetcore/new-db

Migrate from 1.x to 2.x (Sample)
https://github.com/aspnet/Docs/blob/master/aspnetcore/migration/1x-to-2x/samples/AspNetCoreDotNetCore2App/AspNetCoreDotNetCore2App/Program2.cs

https://codingblast.com/entityframework-core-idesigntimedbcontextfactory/
https://codingblast.com/entityframework-core-add-implementation-idesigntimedbcontextfactory-multiple-dbcontexts/

Using DBContext in Controller
https://www.blinkingcaret.com/category/entity-framework-core/

Sample
https://docs.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/sql?view=aspnetcore-2.1

Config DBContext
https://docs.microsoft.com/en-us/aspnet/core/migration/1x-to-2x/?view=aspnetcore-2.1

Seed Database
https://dotnetthoughts.net/seed-database-in-aspnet-core/

Multi Tenant
https://dotnetthoughts.net/building-multi-tenant-web-apps-with-aspnet-core/

Sqlite
https://dotnetthoughts.net/configuring-ASP-NET-identity-with-sqlite/

Unit Of Work
https://dotnetthoughts.net/implementing-the-repository-and-unit-of-work-patterns-in-aspnet-core/

EF Core 1.1
https://www.codeproject.com/Articles/1209903/Getting-Started-with-Entity-Framework-Core-Databas

jQuery

<script type="text/javascript" src="/Scripts/jquery-2.2.4.js"></script>

<script type="text/javascript" src="/Scripts/Master.js"></script>

Categories

Recent posts