Karen Payne
Karen Payne
#### Describe the bug Pressing Run causes the page to lock-up #### Did this error occur while using `dotnet try` or online? - [ ] `dotnet-try` - [X] online ####...
Is there a way to toggle the current option `aria-checked` attribute in onChange event? ```javascript onChange: function (option, checked) { var toppings = $('#select-tops-options option:selected'); var selected = []; $(toppings).each(function...
After setting `DeploymentName` and `ApiKey` in` RepoSharedConfig.json` I ran the project` ExampleBlazorApp`. Initial screen appears, go to smartpaste window. Copy sample text, click the smart paste button and get the...
Using VS2022, 17.9.2, - Created ConsoleApp1 targeting NET Core 8 - Closed VS2022 - From solution folder in a terminal used `renameproject ConsoleApp1 KarenApp1` Project file ```xml Exe net8.0 enable...
Used the following handler with SQL-Server, works as expected. ```csharp public class DateOnlyTypeHandler : SqlMapper.TypeHandler { public override void SetValue(IDbDataParameter parameter, DateOnly date) { parameter.Value = date.ToString("yyyy-MM-dd"); } public override...