本文整理汇总了C#中Migration.Execute方法的典型用法代码示例。如果您正苦于以下问题:C# Migration.Execute方法的具体用法?C# Migration.Execute怎么用?C# Migration.Execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Migration
的用法示例。
在下文中一共展示了Migration.Execute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Execute
private bool Execute(Migration migration)
{
var type = migration.Type;
var version = migration.Version;
var dbVersion = _versioner.CurrentVersion(type);
_logger.Info(string.Format("Database {0} version is : {1}", type, dbVersion));
if (version <= dbVersion)
{
_logger.Debug(string.Format("{0} migration version {1} is less than database version", type, version));
return true;
}
Stopwatch sw = new Stopwatch();
sw.Start();
_logger.Info("Executing migration to version " + version);
try
{
migration.Execute(_session);
}
catch (Exception ex)
{
_logger.Error(string.Format("Failed to execute {0} migration to version {1}", type, version), ex);
return false;
}
sw.Stop();
_logger.Info(string.Format("migration to version {0} took {1} seconds.", version, sw.Elapsed.TotalSeconds));
if (!_versioner.SetVersion(migration))
{
_logger.Error("Failed to update database version. Leaving...");
return false;
}
return true;
}
示例2: MigrationExecute
public void MigrationExecute()
{
int expectedRegions = new Select("RegionDescription").From("Region").GetRecordCount();
using(Migration m = new Migration("Northwind"))
{
m.Execute("INSERT INTO Region (RegionDescription) VALUES ('Ireland')");
m.Execute("INSERT INTO Region (RegionDescription) VALUES ('Scotland')");
}
int actualRegions = new Select("RegionDescription").From("Region").GetRecordCount();
Assert.AreEqual(expectedRegions + 2, actualRegions);
}