ServiceStack ORMLite JSON Deserialization multiple levels
I've got a class containing a Dictionary like this: ``` Dictionary<string,object> Data ``` I put data on multiple levels into here, such as: ``` Data.Add("simple",4); Data.Add("object",new Dictionary...
- Modified
- 16 Feb at 09:50
AvaloniaUI - What is the proper way to inject ViewModels into Views using composition-root based DI system?
I am new to Avalonia/ WPF, Xaml and desktop development in general so please forgive and clarify any related misunderstandings I demonstrate. I will continue to study available documentation but I am ...
- Modified
- 5 Jun at 09:47
How to take a screenshot of the game view in Unity
How do you take a screenshot of the game view without external sources like Snipping Tool or Lightshot, like to take a screenshot with the resolution i configured in my Game View window. Like i want t...
- Modified
- 6 May at 20:24
getting "The bucket does not allow ACLs" Error
This is my bucket policy ``` { "Version" : "2012-10-17", "ID" : "************", "Statement" : [ { "Sid" : "************", "Effect" : "Allow", "P...
What is double exclamation mark in C#?
From [https://source.dot.net/#System.Private.CoreLib/Hashtable.cs,475](https://source.dot.net/#System.Private.CoreLib/Hashtable.cs,475): ``` public virtual bool ContainsKey(object key!!) ``` It looks...
- Modified
- 18 Feb at 08:48
servicestack and ormlite database auto generation
In [servicestack](https://github.com/ServiceStack/ServiceStack) and [ormlite](https://github.com/ServiceStack/ServiceStack.OrmLite) How do you auto generate database and seed it the first time it is a...
- Modified
- 9 Feb at 06:32
How to setup Serilog with Azure Functions v4 correctly?
I want to use Serilog in an Azure Function v4 (.net 6) (the logs should be sent to Datadog). For this I have installed the following nuget packages: ``` <PackageReference Include="Serilog" Version="2....
- Modified
- 8 Feb at 12:36
Servicestack redirect to metadata
i've the following problem: i've a web service application that uses ServiceStack. I'd like to register as base path "/api", but even if I set DefaultRedirectPath to "/api/metadata", when i start the ...
- Modified
- 8 Feb at 11:40
Multiple errors in ServiceStack Angular client
We just started getting these errors when building our Angular project ``` Error: node_modules/@servicestack/client/dist/index.d.ts:484:20 - error TS1005: ';' expected. 484 get completed(): boole...
- Modified
- 7 Feb at 15:24
ServiceStack.JsonServiceClient.HttpLog is not populating
I'm having trouble enabling logging for a `ServiceStack.JsonServiceClient`. I'm working from the documentation [Capture HTTP Headers in .NET Service Clients](https://docs.servicestack.net/csharp-clie...
- Modified
- 5 Feb at 08:22
Rider: Debug remote applications running in a docker container on WSL2 via SSH
There is [Rider's documentation on how to debug remote applications via SSH](https://www.jetbrains.com/help/rider/SSH_Remote_Debugging.html), and it perfectly works when I debug applications running o...
The logging message template should not vary between calls (CA2254) when only passing on variables
I understand the concept of this warning (similar to [this question](https://stackoverflow.com/q/65874828/371917)), but what is wrong with this code? ``` private async Task LogWarningAsync(short? user...
- Modified
- 2 Feb at 12:44
.NET 6 failing at Decompress large gzip text
I have to decompress some gzip text in .NET 6 app, however, on a string that is 20,627 characters long, it only decompresses about 1/3 of it. The code I am using code works for this string in .NET 5 ...
IRestResponse could not be found
I have restsharp 107.1.2 loaded via nuget target framework is .net 6.0. The following code claims that IRestResponse reference is missing, though I feel like I'm following pretty close to the RestSha...
ServiceStack JsonServiceClient Requests not consistent
I've created a `ServiceStack.JsonServiceClient` to consume 3rd party API. I'm using the `Get(IReturn<MyType>)` method. My Request object looks like this: ``` public class MyRequest : Base, IReturn<MyT...
- Modified
- 30 Jan at 12:28
When is usefull use ServiceStack?
i'm new to ServiceStack, so forgive me. i'd like to know when is usefull use ServiceStack. For example, if i've to create a console app that not exposes services, creating an appHost is not right, do ...
- Modified
- 30 Jan at 10:5
What does assignment to a bracketed expression mean in C#?
I'm reading Avalonia source code and I came across this sentence: ``` return new MenuFlyoutPresenter { [!ItemsControl.ItemsProperty] = this[!ItemsProperty], [!ItemsControl.ItemTemplateProperty...
- Modified
- 30 Jan at 10:38
ServiceStack's JsConfig.TextCase no long honored in v6.0
We have existing code that worked as desired in ServiceStack v5.13.2, but had unexpected breaking behavior after upgrading to v6.0.0. Here is our service implementation: ``` public async Task<object> ...
- Modified
- 27 Jan at 23:57
Multiple AND conditions on the same column [Servicestack.OrmLite]
I was wondering if it's possible to have multiple `AND` conditions on the same column using `Servicestack.OrmLite`. This is the `SELECT` statement I printed out, but It always returns 0. I should get ...
- Modified
- 27 Jan at 18:25
.NET 6 (stable) IConfiguration setup in Program.cs
This appears to be a similar problem but none of the answers are fitting for my code...: [Read appsettings.json in Main Program.cs](https://stackoverflow.com/questions/41738692/read-appsettings-json-i...
- Modified
- 26 Jan at 14:57
Extension method .ToJsv() from ServiceStack.Text ignores null values in collections
My test class: ``` public class TestA { public IEnumerable<string> Collection { get; set; } } ``` When I call extension method from ServiceStack.Text on TestA object with property Collection whi...
- Modified
- 25 Jan at 14:27
.NET Core stop HostedService in the Integration test
I have .NET Core web API project, for some reasons, we created a background service in this project and start running the background service while the application is started. So, we created a `Backgro...
- Modified
- 6 May at 10:32
How to retrieve blobs within a blob directory path using the Azure.Storage.Blobs BlobClient?
I'm not seeing any examples online on how to get all the blobs located inside a certain directory within a `BlobContainerClient`. Previously, I was using the `Microsoft.Azure.Storage` packages, but th...
- Modified
- 22 May at 04:14
System.TypeLoadException: Method 'WriteFileAsync' in type 'ServiceStack.IO.MemoryVirtualFiles'
Getting this error on App startup when Azure DevOps builds my project. App works fine in Visual Studio. ``` Unhandled exception. System.TypeLoadException: Method 'WriteFileAsync' in type 'ServiceStac...
- Modified
- 19 Jan at 13:52
ServiceStack TimeSpan Serialization can't be Cast by SQL to Time(7)
When `TimeSpan` properties are serialized they end up looking like this: `-PT10M`, `PT30S`, or `PT6H`. My real problem is that in MSSQL I can't use the `Cast` function to get them to a Time so if the...
- Modified
- 19 Jan at 23:6