DapperAOT
DapperAOT copied to clipboard
Build time tools in the flavor of Dapper
it comes to my mind the Project refit [https://github.com/reactiveui/refit](url). hoping the 'command' can auto-generate too.
I have a Roslyn Source Code Generators examples with code on GitHub - https://github.com/ignatandrei/rsCG_examples The code is pretty simple , but it gives the error System.NullReferenceException: Object reference not set...
Is there an update on the status of this project?
The following create statement with an Enum in the class will fail with Invalid cast from 'System.Int64'. I´m using sqlite, the query that fails looks like this ```c# public async...
I'd like to use DateOnly since it was added to Dapper 2.1.37, but AOT 1.0.31 throws an error when using it with queries like `IDbConnection.QueryAsync` `InvalidCastException: Invalid cast from 'System.DateTime'...
Would you accept a PR to allow reading of custom types? ### Background In my app I often wrap primitive types in dedicated types to express exactly what they represent...
I have the following command: ``` var unitGrouping = new Dictionary(); _ = await mySqlConnection.QueryAsync(@" select BIN_TO_UUID(iu.id) as id, iu.model, iu.serial, iu.name, iu.type, iu.interface_mac, iu.interface_serial, iu.interface_model, BIN_TO_UUID(iu.system_id) as system_id, BIN_TO_UUID(ou.id)...
**Describe the bug** wherer in clause of mysql caused exception Where are you seeing this? - what Dapper/Dapper.StrongName version? Dapper Version="2.1.24" - what Dapper.AOT/Dapper.Advisor version? Dapper.AOT Version="1.0.31" - if relevant:...
See https://github.com/DapperLib/Dapper/issues/1914 and https://github.com/DapperLib/Dapper/issues/1971 In analyzer mode (not in generator mode), we should be able to detect the following queries as problematic, i.e. the true parameters are not the same...
SQL string looks something like "_... WHERE [DividendId] IN @Ids ORDER BY [SecId];"_ This caused error DAP206 Incorrect syntax near @Ids, but the code executes as expected without having the...