Stef Heyenrath

Results 713 comments of Stef Heyenrath

The correct code is: ``` c# var requestJson = new { PricingContext = new { Market = "USA" } }; var responseJson = new { Market = "{{JsonPath.SelectToken request.body \"$.PricingContext.Market\"}}"...

https://github.com/WireMock-Net/WireMock.Net/pull/1111

Can you please provide the full C# code for `Task Handlebars_SelectToken_complex_object_using_FileFromBody`? Because I don't see the mapping.

@dotnetprofessional It's related to HandleBars.Net, it seems that the escaped `"` are not correct parsed. A solution is to use `'`, like: ``` json { "market": "{{JsonPath.SelectToken request.bodyAsJson '$.pricingContext.market'}}", "languages":...

Any roadmap / plans to support this in the future?

Hi @egil, I got this working in the demo app with: ## :one: Adding ``` c# builder.AddMarkupContent(2, @""); ``` to HtmxHeadOutlet. Note that just adding the script in my main...

It supports .NET Standard 2.1 ![image](https://github.com/scottksmith95/LINQKit/assets/249938/5be17e81-3e07-4997-a92f-b3fe7b9ba991) So .NET should work ?

@Fosol When creating a default .NET 8 console app: ``` xml Exe net8.0 enable enable ``` With this code: ``` csharp using LinqKit; namespace ConsoleAppLinqCore { internal class Program {...

Both `LinqKit` and `LinqKit.Microsoft.EntityFrameworkCore` can be used in a .NET **8** console app (I did some tests), however the `LinqKit` NuGet is not what you would want to use, because...

Are you using Visual Studio 2022 ?