Result.bind

Creates n objects from the result. T doesn't have to extend Entity.

struct Result
T[]
bind
(
T
)
()

Examples

class Test {

   String a;

   Integer b;

}
...
Test[] entities = result.bind!Test();

Meta