DapperAOT
DapperAOT copied to clipboard
No code or warning generated for QueryAsync with private class return
DapperAOT version 1.0.31
To Reproduce
var x = await connection.QueryAsync<Test>("SELECT 1 as v"); // no interceptor code generated
private class Test
{
public required int V { get; init; }
};
Probably should produce a warning?