Reputation: 27338
I'm little bit confused with the naming.
First of all, is there any difference between Document DB and Cosmos DB Sql Api, or it is just another name?
Second, in order to access Cosmos DB Sql Api I have to use DocumentDB nuget package. Will it be ever renamed or DocumentDB naming stays relevant.
Third, in my code, when naming my classes, should I use DocumentDB, or CosmodDbSqlApi? E.g. DocumentDbStore
, or CosmodDbSqlApiStore
, etc...
Upvotes: 0
Views: 133
Reputation: 7200
DocumentDB has been rebranded to Cosmos DB and everything new related to it will be named Cosmos DB.
Some SDKs kept the old name for backwards compatibility sake but it should not be referenced as DocumentDB but rather Cosmos DB. CosmosDbStore
the most appropriate way to name your class (at least in my opinion).
Upvotes: 1