What determines the SQL Azure Database Edition and size with the first EF code?

I have a POC solution that uses ASP.NET MVC 3 to build a website and Entity Framework 4.3. The first approach is to access data. I can deploy to a hosted service in Azure, and my database is created in SQL Azure based on my connection string. I do not understand how the database version (Web) and size (1 GB) were determined. Is it standard or manageable?

I plan to get closer to this by setting the database initializer to null when you are going to create and manage it yourself, but I want to understand the options. Thanks

+5
source share
1 answer

CREATE DATABASE. maxsize , "", 1 . CREATE DATABASE:

CREATE DATABASE database_name  [ COLLATE collation_name ]
{
   (<edition_options> [, ...n]) 
}

<edition_options> ::= 
{
   (MAXSIZE = {1 | 5 | 10 | 20 | 30150} GB) 
    |(EDITION = {'web' | 'business'})
}

. MSDN.

+1

All Articles