如果数据库尚不存在,则通过以下方式创建数据库既好又简单:
if (!context.DatabaseExists())
{
// Create the local database.
context.CreateDatabase();
}
但是,如果在升级过程中添加了一个新表,是否可以对手机上的数据库进行就地升级,以匹配刚刚创建的模式?
如果数据库尚不存在,则通过以下方式创建数据库既好又简单:
if (!context.DatabaseExists())
{
// Create the local database.
context.CreateDatabase();
}
但是,如果在升级过程中添加了一个新表,是否可以对手机上的数据库进行就地升级,以匹配刚刚创建的模式?
您可以使用 DatabaseSchemaUpdater 类,请参阅此演练: http: //msdn.microsoft.com/en-us/library/hh394022 (v=VS.92).aspx