Let us assume there is a ModelA and ModelB.
ModelA has a one to many relationship with ModelB.
ModelA has a field called name and ModelB has a field called alias.
I want to query for all ModelB where ModelB.alias <> ModelA.name.
Earlier in 0.17 I think this was possible via ModelA__name but in 1.0.0b1 this functionality seems to be uncovered. I tried a lot of approaches but none worked.
Let us assume there is a ModelA and ModelB. ModelA has a one to many relationship with ModelB. ModelA has a field called name and ModelB has a field called alias. I want to query for all ModelB where ModelB.alias <> ModelA.name.
Earlier in 0.17 I think this was possible via ModelA__name but in 1.0.0b1 this functionality seems to be uncovered. I tried a lot of approaches but none worked.