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
where props is the list of data members that must be equal for two objects to be considered equal.
Problem is the get props line. Floor's generator function seems to think that this is a database column and errors out with the following message
Error running FloorGenerator
Column type is not supported for List<Object>.
The solution would be to @Ignore the said line - as proposed in issues #12, #216 etc. Would it be possible, therefore, to get a quick patch release with this fix? The alternative would be for me to not use Equatable at all.
Thanks
Abhinav.
The text was updated successfully, but these errors were encountered:
Vitus,
For now, I have stopped using Equatable and overloaded == in whichever classes I needed to. So, no rush from my side. However, @Ignore would be useful ;-)
Hi Vitus,
I have a database model for which I'm trying to define equality (overload
operator==
) using theEquatable
package.Equatable
requires the following changes in one's model:where
props
is the list of data members that must be equal for two objects to be considered equal.Problem is the
get props
line.Floor
's generator function seems to think that this is a database column and errors out with the following messageThe solution would be to
@Ignore
the said line - as proposed in issues #12, #216 etc. Would it be possible, therefore, to get a quick patch release with this fix? The alternative would be for me to not useEquatable
at all.Thanks
Abhinav.
The text was updated successfully, but these errors were encountered: