Friday, May 11, 2012

SQL queries for null values


update PFEP set supcusttype='1' where supcusttype is null
select supcusttype from PFEP where supcusttype is null

Using Authorization with Swagger in ASP.NET Core

 Create Solution like below LoginModel.cs using System.ComponentModel.DataAnnotations; namespace UsingAuthorizationWithSwagger.Models {     ...