I don't think the documentation ever mentions how to transform
from(Users).select('*').where(() => Users.fields.id.eq(1));
into
select * from users where id = 1;
to supply to my database driver...
Can you elaborate on this?
And how to get back the type of the resulting data, so I can inform the rest of the application about what's going on...
I don't think the documentation ever mentions how to transform
into
to supply to my database driver...
Can you elaborate on this?
And how to get back the type of the resulting data, so I can inform the rest of the application about what's going on...