I have experience building PowerApps against SQL but now have a project using D365 as the data source.
I've built a Canvas PowerApp using the Dynamics 365 connector (which has been very problematic) and I have been advised that I should use the CDS connector instead.
Using the D365 connector the following filter is delegable:
ClearCollect(colServiceLocations,Filter('Service Locations',dsl_serviceprovidertype=860910000))
Using the CDS connector this same Filter (changing the schema name for a Display Name) I get a delegation warning and also an incompatible type warning.
ClearCollect(colServiceLocations,Filter('Service Locations','Service Location Type (Service Locations)' =860910000))
'Service Location Type (Service Locations)' appears to be a complex type (record). I just want to compare the Service Location ID to my know ID value.
Is is possible to make filters such as these (there are many in the App) work and be delegable with CDS connector?
Thanks!