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
When I map a result set with a result map where every possible association and collection is defined but the respective columns are missing (not just null), at least one object gets added as association/to the collection anyway, with every property undefined.
Version used: 1.1.2
This worked in older versions because the check there was for a falsy id property which included undefined and now the check uses the identity operator for null.
This should be fixed by also checking for undefined id properties and not just for null ids.
The text was updated successfully, but these errors were encountered:
When I map a result set with a result map where every possible association and collection is defined but the respective columns are missing (not just
null
), at least one object gets added as association/to the collection anyway, with every propertyundefined
.Version used: 1.1.2
This worked in older versions because the check there was for a falsy id property which included
undefined
and now the check uses the identity operator fornull
.This should be fixed by also checking for
undefined
id properties and not just fornull
ids.The text was updated successfully, but these errors were encountered: