Have started to use Entity Code First with Azure Mobile Services and have met some issue:
For using TableController with Entity objects I need to derive each of them from EntityData class, that provide string Id field!
I used to use int, long and even guid instead string for id, so...
What is benefits of this? What about insert operation and what is the best practice for this? What about performance for string id?