shy-huang

Microsoft Azure官网
学习cosmos DB,也称作 documentDB,NoSql,不是关系型数据库,数据以Json的格式存储,灵活性强。

1.DLL

2.Connector settings

string EndpointUrl = "";
string PrimaryKey = "";

3.Create database

4.Create collection(table)

5.Update

6.Delete

在所有操作前,一定要确保这个collection在database中存在,所以在初始化的时候,应该把cosmosDB中所有的collection都遍历,
判断是否存在,不然其他的api接口操作异常。

相关文章:

  • 2021-06-04
  • 2021-11-02
  • 2022-12-23
  • 2021-06-22
  • 2022-02-14
  • 2021-12-13
  • 2022-01-09
  • 2021-07-20
猜你喜欢
  • 2021-10-04
  • 2021-05-08
  • 2021-06-14
  • 2021-04-25
  • 2021-11-07
  • 2021-07-11
相关资源
相似解决方案