Reputation: 39871
Is there a way to use EF Code First Database Generation in a federated SQL Azure database? I don't want to manually create my schema after having just created my objects.
Upvotes: 2
Views: 547
Reputation: 364409
According to this article on ADO.NET team blog, it is not possible:
The current release of Entity Framework can be used to work with SQL Azure Federations, however a federated database cannot be created by the Entity Framework.
You can also check referenced start guide for EF used with SQL Azure Federation.
Upvotes: 2