1. 현상


DB에 접속후 Select문 사용시 "DynamicMethod의 형식 소유자가 잘못되었습니다." 에러 발생



2. 원인


await conn.QueryFirstOrDefaultAsync<IEnumerable<.......>>(sql)



3. 해결


 await conn.QueryAsync<.......>(sql);



4. 참조


https://stackoverflow.com/questions/30435185/dapper-throws-invalid-type-owner-for-dynamicmethod

반응형

+ Recent posts