You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if we were able have FK references lazy loaded (ie not loaded from the DB) until they are referenced, and achieve this via support in the ORM library
The text was updated successfully, but these errors were encountered:
Do you mean associations? Like I have an Order that has a
List and the list of OrderDetails is lazy loaded? If you mean
that, that is a slippery slope. Having build an ORM product years and years
ago, those types of features are the ones that you have to keep adding to
and keep maintaining and it becomes a pain.
That is especially the parts of an ORM that I wanted to avoid. It really is
a library for JdbcTemplate of Spring's JdbcTemplate, with very very little
straight mapping one to one to objects and tables and that was it.
If you want that, you can always add it, but I wouldn't have time to
maintain that part of the code. But you can always do that if you want.
It would be nice if we were able have FK references lazy loaded (ie not
loaded from the DB) until they are referenced, and achieve this via support
in the ORM library
Reply to this email directly or view it on GitHub: #6
It would be nice if we were able have FK references lazy loaded (ie not loaded from the DB) until they are referenced, and achieve this via support in the ORM library
The text was updated successfully, but these errors were encountered: