cyril265
cyril265
I am using CsQuery 1.3.5-beta5. Tryed it with different HTML document but the result is the same. Code: ``` c# var doc = CQ.Create(TEST_HTML); var el = doc.Find("div > div...
Sometimes you want to provide an external value to the mapping method. For example your DTO doesn't have a tenant id. You are getting the tenant id from the currently...
Mapping errors that result in a `JsonMappingException` produce `NullPointerException`. This is caused by the fact that the client tries to get the error stream from the connection if an IOException...
It seems like .HasColumnType("jsonb[]") breaks after updating from 7 to 8. Example entities + DbContext: ```C# public class Person { public int Id { get; init; } public required List...
DapperAOT version 1.0.31 **To Reproduce** ```C# var x = await connection.QueryAsync("SELECT 1 as v"); // no interceptor code generated private class Test { public required int V { get; init;...