本文整理汇总了C#中IZetboxContext.FindPersistenceObject方法的典型用法代码示例。如果您正苦于以下问题:C# IZetboxContext.FindPersistenceObject方法的具体用法?C# IZetboxContext.FindPersistenceObject怎么用?C# IZetboxContext.FindPersistenceObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IZetboxContext
的用法示例。
在下文中一共展示了IZetboxContext.FindPersistenceObject方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReloadStaging
private void ReloadStaging(IZetboxContext ctx)
{
using (Log.InfoTraceMethodCall("reloading staging"))
{
// TODO: use named objects
var mp = ctx.FindPersistenceObject<MigrationProject>(MigrationProjectGUID);
if (mp == null)
{
throw new InvalidOperationException("Migrationsprojekt not found");
}
foreach (var stage in mp.StagingDatabases)
{
ReloadStaging(stage);
}
Logging.MailNotification.Info("Staging Load finished");
}
}
示例2: GetSavedConfig
private SavedListConfiguration GetSavedConfig(IZetboxContext ctx)
{
var config = ctx.GetQuery<SavedListConfiguration>()
.Where(i => i.Type.ExportGuid == Parent.DataType.ExportGuid) // Parent.DataType might be from FrozenContext
.Where(i => i.Owner.ID == this.CurrentPrincipal.ID)
.FirstOrDefault();
if (config == null)
{
config = ctx.Create<SavedListConfiguration>();
config.Owner = ctx.Find<Identity>(CurrentPrincipal.ID);
config.Type = ctx.FindPersistenceObject<ObjectClass>(Parent.DataType.ExportGuid); // Parent.DataType might be from FrozenContext
}
return config;
}
示例3: Prepare
private void Prepare(IZetboxContext ctx)
{
var connectionString = Config.Server.GetConnectionString(Helper.ZetboxConnectionStringKey);
dst = OpenProvider(ApplicationScope, connectionString.SchemaProvider, connectionString.ConnectionString);
// TODO: use named objects
var stage = ctx.FindPersistenceObject<StagingDatabase>(StagingDatabaseGUID);
var connectionStringStage = Config.Server.GetConnectionString(stage.ConnectionStringKey);
source = OpenProvider(ApplicationScope, connectionStringStage.SchemaProvider, connectionStringStage.ConnectionString);
executor = ApplicationScope.Resolve<TaskFactory>().Invoke(source, dst);
tables = stage.SourceTables.Where(t => t.DestinationObjectClass != null).ToDictionary(t => t.Name);
// Prepare Staging Structure
source.ExecuteSqlResource(this.GetType(), "$safeprojectname$.Scripts.CreateStagingAggregationDatabase.sql");
}