コード例 #1
0
		public void GenerateUUIDs(ConfigScope scope)
		{
			_config.Put(GenerateUuidsKey, scope);
		}
コード例 #2
0
		public void GenerateVersionNumbers(ConfigScope scope)
		{
			if (scope == ConfigScope.Individually)
			{
				throw new NotSupportedException();
			}
			GenerateCommitTimestamps(scope == ConfigScope.Globally);
		}
コード例 #3
0
ファイル: ClassMetadata.cs プロジェクト: masroore/db4o
 private bool Generate1(ConfigScope globalConfig, TernaryBool individualConfig)
 {
     return globalConfig.ApplyConfig(individualConfig);
 }