by Yogesh | Jul 4, 2021 | .NET Core 2.0 and Angular 4 Tutorial, angular with asp.net mvc tutorial
DTO and AutoMapper in asp.net core web api with example Create Model Classes(Author, Book, AuthorDTO, BookDTO) public class Author { public int id { get; set; } public string name { get; set; } public string address { get; set; } public string mobile { get; set; }...
by Yogesh | Jul 4, 2021 | .NET Core 2.0 and Angular 4 Tutorial, ASP.NET Core 2 Tutorial
How to Configure Swagger UI with ASP.Net Core REST Services Step1: Install Swashbuckle.AspNetCore package from NuGet Package Manager Step 2: Update Startup.cs using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc; using...