mcash95
mcash95
Page: ` ` ViewModel: `namespace THSDashBoardMobile.Models.ViewModels { public partial class AdminGraphViewModel:ObservableObject { [ObservableProperty] public ObservableCollection regions = new(); [ObservableProperty] public Company company; /* * Graphing properties * these are only...
The cause is when you use references to the LiveCharts Cartesianchart while building the SKCartesianChart. ex ` var skChart = new SKCartesianChart() { Width = 1200, Height=900, Series=new ISeries[] {new...
Any news on this? I'm looking to do the same thing for database transactions, running into some issues.
Any updates on this? Running into the same issues, curious if anyone has found a solution
Not meaning to speak for anyone else here, but i think you may find more success crowd sourcing answers. @nozzlegear any chance you would be willing to enable discussions on...
I can imagine! For reference here is the link to the repo for the package. https://github.com/graphql-dotnet/graphql-client Thanks again for the awesome work!
Yes absolutely. Extensions: GraphQLTools by Code Architects Research (https://marketplace.visualstudio.com/items?itemName=codearchitects-research.GraphQLTools) Packages: Microsoft's GraphQL-Client package. Reproduction Steps: In order to make Syntax highlighting happen with the GraphQL client i generated a new...
Try this approach for logging requests and responses. I am setting it up with my project right now and it is working pretty well thus far. https://learn.microsoft.com/en-us/aspnet/core/fundamentals/http-logging/?view=aspnetcore-9.0 As for mocking...