DataContext.CreateDatabase Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a database on the server.
public:
void CreateDatabase();
C#
public void CreateDatabase();
member this.CreateDatabase : unit -> unit
Public Sub CreateDatabase ()
The following code shows how to set up a temporary database and then remove it.
C#
if (!db.DatabaseExists())
db.CreateDatabase();
// …
db.DeleteDatabase();
If Not db.DatabaseExists Then
db.CreateDatabase()
End If
' ...
db.DeleteDatabase()
The name of the database is derived by using the following algorithm:
- If a database is identified in the connection string, its name is used.
- If a DatabaseAttribute attribute is present, its Name property is used as the name of the database.
- If there is no database tag in the connection string and a strongly typed DataContext is used, a database that has the same name as the DataContext inheriting class is created.
- If a weakly typed DataContext is used, an exception is thrown.
- If the DataContext has been created by using a file name, the database corresponding to that file name is created.
Продукт | Версії |
---|---|
.NET Framework | 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.
Відгук про .NET
.NET – це проект із відкритим кодом. Виберіть посилання, щоб надати відгук: