Sakkie van Zyl
Sakkie van Zyl

Reputation: 93

Using EF Core to create DB and provision shared throughput

I'm using EF core 3.1 Azure Cosmos DB Provider and would like to to create the DB from my application code. During development I want to create a DB with shared provisioned throughput to limit cost but I can't find anywhere to configure it in EF core so that when I call EnsureCreated() the database is created with a shared throuput?

Upvotes: 1

Views: 287

Answers (1)

Steve Johnson
Steve Johnson

Reputation: 8690

Unfortunately,creating a DB with shared provisioned throughput haven't been implemented yet.You can track this feature on Github issues.

Hope this can help you.

Upvotes: 3

Related Questions