We started using Entity Code First with Azure Mobile Services and ran into some problem:
To use TableController with Entity objects, I need to derive each of them from the EntityData class, which provide a row identifier field!
I used to use int, long and even guid instead of string for id, so ...
What are the benefits of this? What about the insert operation and what is the best practice for this? What about performance for row id?
source
share