private void HandleAssociationSetElement(XmlReader reader) { EntityContainerAssociationSet containerAssociationSet = new EntityContainerAssociationSet(this); containerAssociationSet.Parse(reader); this.Members.Add((SchemaElement)containerAssociationSet, true, new Func <object, string>(Strings.DuplicateEntityContainerMemberName)); }
private void HandleAssociationSetElement(XmlReader reader) { DebugCheck.NotNull(reader); var set = new EntityContainerAssociationSet(this); set.Parse(reader); Members.Add(set, true, Strings.DuplicateEntityContainerMemberName); }