Closed lucasteles closed 5 years ago
I got an argument null error when i tried to use an array as an sql parameter
var ids = new[] {1, 2, 3}; var result = connection.Query<Model>("SELECT * FROM TABLE WHERE id in @IDS", new { IDS = ids });
Debuging dapper i found that `command.CommandText' is null on SqlMapper class, what is causing this
Same here.
I got an argument null error when i tried to use an array as an sql parameter
Debuging dapper i found that `command.CommandText' is null on SqlMapper class, what is causing this