Scott Collins
Scott Collins
I have some models being generated in a project that uses nullable reference types The types generate fine, but I am getting CS8669 warnings because the generated file does not...
I have two domain classes **Friend.cs** ``` C# public record Friend { public string Name { get; init; } } ``` **Me.cs** ``` C# public record Me { public string...
I have two domain records ``` C# public record Province { public string Name { get; init; } = null!; public string Abbreviation { get; init; } = null!; }...
In following the simple example in a brand new Vue3 project created with npm init vue@latest, I am getting the following error in the console when loading the page. Uncaught...