Mirko

Results 2 issues of Mirko

Hello, thanks for developing this project. Does the extension method InsertGetId works for Oracle?

This is my code: ``` public VORace Create(VORace x) { x.RaceId = null; int id = _queryFactory .Query("Race") .InsertGetId(x); x.RaceId = id; return x; } ``` this is my model:...