by Yogesh | Nov 7, 2023 | Azure Developer
Use Azure Key Vault to Keep Your Data Safe Key Vault Introduction Azure Key Vault is a cloud-based service offered by Microsoft Azure that helps you securely manage and protect sensitive information such as keys, secrets, and certificates used by your applications and...
by Yogesh | Nov 27, 2021 | .Net Core 3.1
Class Serilization and Deserilization for Temp Data in Net Core 3.1 using HimanshuMorningCode.Models; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.ViewFeatures; using Newtonsoft.Json; using System; using...
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...
by Yogesh | Jun 19, 2021 | ReactJS Tutorial
How to create React Form Example 1: import React, { Component } from 'react' export default class Form1 extends Component { constructor(props){ super(props); this.state={value:''}; this.handlesubmit=this.handlesubmit.bind(this);...