コード例 #1
0
 private NotNullConditionConfiguration(
     EntityMappingConfiguration owner,
     NotNullConditionConfiguration source)
 {
     this._entityMappingConfiguration = owner;
     this.PropertyPath = source.PropertyPath;
 }
コード例 #2
0
        private NotNullConditionConfiguration(EntityMappingConfiguration owner, NotNullConditionConfiguration source)
        {
            DebugCheck.NotNull(source);
            DebugCheck.NotNull(owner);

            _entityMappingConfiguration = owner;
            PropertyPath = source.PropertyPath;
        }
コード例 #3
0
        private NotNullConditionConfiguration(EntityMappingConfiguration owner, NotNullConditionConfiguration source)
        {
            DebugCheck.NotNull(source);
            DebugCheck.NotNull(owner);

            _entityMappingConfiguration = owner;
            PropertyPath = source.PropertyPath;
        }
コード例 #4
0
        private NotNullConditionConfiguration(EntityMappingConfiguration owner, NotNullConditionConfiguration source)
        {
            Contract.Requires(source != null);
            Contract.Requires(owner != null);

            _entityMappingConfiguration = owner;
            PropertyPath = source.PropertyPath;
        }