ReservedResource has string field ResourceName
I need to support the following SQL in semantics.Walk:
Subscription.Managed = 'true' and Subscription.Status not in ('Deprovisioned','Deleted') and ReservedResource.ResourceName in ('resource1', 'resource2')
has many will replace ReservedResource.ResourceName with an array of values, so the existing implementation doesn't work.
While this PR solves my problem, I'm open for generalizations (to some extension... :)
This is my case:
Subscriptions
has manyReservedResource
ReservedResource
has string fieldResourceName
I need to support the following SQL insemantics.Walk
:has many
will replaceReservedResource.ResourceName
with an array of values, so the existing implementation doesn't work.While this PR solves
my
problem, I'm open for generalizations (to some extension... :)