public static bool ContainsSame(this IEnumerable<PropertyInfo> enumerable, PropertyInfo propertyInfo) { //Contract.Requires(enumerable != null); //Contract.Requires(propertyInfo != null); foreach (var member in enumerable) { if (propertyInfo.IsSameAs(member)) { return true; } } return false; }
internal override void Configure( StorageAssociationSetMapping associationSetMapping, EdmModel database, PropertyInfo navigationProperty) { DebugCheck.NotNull(associationSetMapping); DebugCheck.NotNull(database); DebugCheck.NotNull(navigationProperty); var table = associationSetMapping.Table; if (_tableName != null) { table.SetTableName(_tableName); table.SetConfiguration(this); } var sourceEndIsPrimaryConfiguration = navigationProperty.IsSameAs( associationSetMapping.SourceEndMapping.EndMember.GetClrPropertyInfo()); ConfigureColumnNames( sourceEndIsPrimaryConfiguration ? _leftKeyColumnNames : _rightKeyColumnNames, associationSetMapping.SourceEndMapping.PropertyMappings.ToList()); ConfigureColumnNames( sourceEndIsPrimaryConfiguration ? _rightKeyColumnNames : _leftKeyColumnNames, associationSetMapping.TargetEndMapping.PropertyMappings.ToList()); }
internal override void Configure( AssociationSetMapping associationSetMapping, EdmModel database, PropertyInfo navigationProperty) { DebugCheck.NotNull(associationSetMapping); DebugCheck.NotNull(database); DebugCheck.NotNull(navigationProperty); var table = associationSetMapping.Table; if (_tableName != null) { table.SetTableName(_tableName); table.SetConfiguration(this); } var sourceEndIsPrimaryConfiguration = navigationProperty.IsSameAs( associationSetMapping.SourceEndMapping.AssociationEnd.GetClrPropertyInfo()); ConfigureColumnNames( sourceEndIsPrimaryConfiguration ? _leftKeyColumnNames : _rightKeyColumnNames, associationSetMapping.SourceEndMapping.PropertyMappings.ToList()); ConfigureColumnNames( sourceEndIsPrimaryConfiguration ? _rightKeyColumnNames : _leftKeyColumnNames, associationSetMapping.TargetEndMapping.PropertyMappings.ToList()); foreach (var annotation in _annotations) { table.AddAnnotation(XmlConstants.CustomAnnotationPrefix + annotation.Key, annotation.Value); } }