cryo75

Results 14 issues of cryo75

NET5 Visual Studio 2019 I'm using DevExpress for Blazor and to get records from an external API I use this object: ```c# public class DataSourceLoadOptionsBase { public static bool? StringToLowerDefault...

bug

I created a custom scss file as an example to see if the variable overrides are working: ``` $body-bg: #F000FF; $main-bg: #0000FF; $dark-main-bg: #FF0000; $sidebar-dark-bg: #00FF00; $enable-dark-mode: false; @import '../_adminlte/node_modules/bootstrap/scss/bootstrap';...

I need to inherit from RibbonLabel and override methods so that I can draw text in bold and the background in a different color. However, I couldn't find any Font...

I have the following model: ``` public class Address { public int Id {get; set;} public string Street {get; set;} public int PostCodeId {get; set;} public PostCode PostCode {get; set;}...

potential bug

We need to create a new project and port this code to EFCore. I don't think it will be that compllicated. But I believe that EFCore is the way forward....

I have the following classes: ``` Customer CustomerAddress PostCode State ``` On saving a customer with an address I do: ``` customer = dbContext.UpdateGraph (entity, map => map.OwnedEntity(x => x.CustomerAddress,...

I have this model: ``` public class Customer { public int Id {get; set;} public int Name {get; set;} public virtual ICollection Categories {get; set;} } public class CustomerCategory {...

potential bug

Do I need to clone this repo if I want to have the initial look-and-feel of the dashboard? And if yes, in which project do I need to add my...

enhancement

is it possible to change the main Dijkstra algorithm to search multigraphs? Most probably yes, but what are the changes required because the edges are added to a HashMap?

For testing purposes, I changed the weight from double to a class Edge to that I can store more information for each edge: public class Edge { public double weight;...