Blog

Keep up with our latest news

WordPress Custom Theme Notes

Purpose : to check if the user is log in in page Steps: Put the code at the top of the page to check if user log in.

Continue reading »

Create dotnet new solution via terminal

% dotnet new sln % dotnet new webapi -o API % dotnet sln add API % code . % dotnet run % dotnet ef migrations add MyFirstMigration % dotnet ef database update % dotnet ef database drop % dotnet run

Continue reading »