DapperLib/DapperAOT

No code or warning generated for QueryAsync with private class return

Opened this issue · 0 comments

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?