Exemple #1
0
 public MappingModelRepository()
 {
     this._ModelSchemaMappings = new FreezableOwnedCollection <MappingModelRepository, MappingModelSchema>(this, (owner, item) => { item.Owner = owner; });
 }
Exemple #2
0
 public MappingModelComplexType()
 {
     this._PropertyMappings = new FreezableOwnedCollection <MappingModelComplexType, MappingModelProperty>(this, (owner, item) => { item.Owner = owner; });
     this._IndexMappings    = new FreezableOwnedCollection <MappingModelComplexType, MappingModelIndex>(this, (owner, item) => { item.Owner = owner; });
 }
Exemple #3
0
 public MappingModelEntity()
 {
     this._ConstraintMappings = new FreezableOwnedCollection <MappingModelEntity, MappingModelConstraint>(this, (owner, item) => { item.Owner = owner; });
 }
 public CsdlNavigationPropertyModel()
 {
     this._ReferentialConstraint = new FreezableOwnedCollection <CsdlNavigationPropertyModel, CsdlReferentialConstraintV4Model>(
         this,
         (owner, item) => { item.Owner = owner; });
 }