is it posible to call stored procedure from Exposed and map result to object? I'am using Spring Boot with MS SQL.
Asked
Active
Viewed 1,178 times
1 Answers
1
Of course. You can use a transaction and run your own sql statement in it (calling the procedure) and create a mapping function for that object, where you map the fields of the result set to the ones of the object.
e: you can have a look in here, how to call simple sql statement and map the resultset

phaen
- 349
- 2
- 12