Open the Visual Studio Command Window and type in the two following commands.
PM> Uninstall-package Microsoft.CodeDom.Providers.DotNetCompilerPlatform
PM> Uninstall-package Microsoft.Net.Compilers
Open the Visual Studio Command Window and type in the two following commands.
PM> Uninstall-package Microsoft.CodeDom.Providers.DotNetCompilerPlatform
PM> Uninstall-package Microsoft.Net.Compilers
SoapUI is for “The Most Advanced REST & SOAP Testing Tool in the World”
Here is a snippet of TSQL code that looks at a database and returns just by date and ordered by date.
SELECT *
FROM [DatabaseName].[Schema].[TableName]
where Cast(LogDate as date) = '2019-06-19'
order by LogDate desc
SELECT *
FROM [DatabaseName].[Schema].[TableName]
where Cast(LogDate as date) = Cast(GetDate() as date)
order by LogDate desc
Watch “”Uncle” Bob Martin – “The Future of Programming”” on YouTube
DRY (Don’t Repeat Yourself)
Separation Of Concern
SOLID principle
Unit Testing
My Interest in Blazor Video. Blazor is a new Framework that uses the webAPI in all “Modern” browsers. You can create SPA (Single Page Applictions) using C# code. No javaScript is Microsoft’s goal. Personally I would study both…
Check out this Channel9 Video
Migrating from Entity Framework 6 to Core (preparing for .NET Core 3)
DocumentReady
When you want to use the jQuery Document ready in a TypeScript file you need to use the following format…
//TypeScript Document Ready Example...
//===========================================================
$(() => {
console.log("New version of Document ready");
//Document Ready code goes here…
}); //End of Document Ready ====================================================================
Using // @ts-ignore:
I am starting to use TypeScript and have ran into issues with unrecognizable functions used. Here is what I did to help get past it.
// @ts-ignore: multi-select could not find
var panel = $('#myId').multiselect({
by using the // @ts-ignore: (comment) I was able to ignore the “.multiselect” function for TypeScript to Recognize.