I have two tables say A and B.
A has a field that sometimes can refence to a record in B.
In SQL databases this is no problem, just make a unique numeric id field in B etc.
But in a powerapps entity I really do not understand how to achieve this.
I made a GUID sized string field in A called BId and put the GUID of the B record in there (a GUID is a string right?)
Now if I want to find back the record in B it says that a string and a guid are incompatible.
If I find GUID(string) (LookUp etc) it does find the right record but I get blue delegation warning lines, so if B gets > 2000 records I am fubarred.
If I want to cache complete table B when it is more then 2000 records: tricks to do that depend on a unique numeric id field in the table and Powerapps entities do not have that type of field. Again Fubarred.
This should be dead simple. I am missing something for sure. The explanations and machinations of entity relations are obscure to me. If I introduce a relation now, how do I update existing related records. Does powerapps compute with the fact that some records might be related but not all of them.
????