Chuyển đến nội dung chính

Bài đăng

Đang hiển thị bài đăng từ Tháng 6, 2017

Moving ASP.NET Identity model to class library

To move the IdentityModel into a class library (which is the right thing to do according to the SRP ), follow these steps: Create a class library. (ClassLibrary1) Using NuGet, add a reference to Microsoft.AspNet.Identity.EntityFramework. This will also auto-add some other references. Add a reference in your website to ClassLibrary1 Find WebSite/Models/IdentityModel.cs and move it to ClassLibrary1. Make IdentityModel.cs look like this: public class ApplicationUser : IdentityUser { } public class ApplicationDbContext : IdentityDbContext<ApplicationUser> { public ApplicationDbContext() : base("YourContextName") { } } Make sure your website's Web.config has YourContextName pointing to the right database in the section. (Note: this database can and should house your application data). <add name="YourContextName" connectionString="YourConnectionStringGoesHere" providerName="System.Data.SqlClient" /...

Thêm Swagger vào Project Web API

ASP.NET Web API Help Page Khi tạo project Web API, sẽ có 1 nuget tên là Microsoft ASP.NET Web Api Help Page được cài đặt để tạo trang Help cho Web API.

Authentication and Authorize in Web API 2 (Phần 2): Xác thực địa chỉ email và tùy chỉnh Password Policy

Trong bài viết này, sẽ mô tả các bước để xác thực địa chỉ email sau khi đăng ký và cách tùy chỉnh Password Policy. Authentication and Authorize in Web API 2 (Phần 1)