22 references to SelectMany
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (1)
208return (IEnumerable<TOutput>)(object)(CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(m_rightChildSelector));
System.Data.Entity (15)
System\Data\Mapping\FunctionImportMapping.cs (2)
78.SelectMany(mapping => mapping.GetMappedEntityTypes(m_itemCollection)) 85.SelectMany(mapping => mapping.GetDiscriminatorColumns())
System\Data\Mapping\FunctionImportMapping.ReturnTypeRenameMapping.cs (1)
61this.IsOfTypeEntityTypes.SelectMany(entityType =>
System\Data\Mapping\StorageMappingItemCollection.cs (5)
525.SelectMany(m => m.AllProperties) 542foreach (var propertyMapping in entityTypeMapping.MappingFragments.SelectMany(mf => mf.AllProperties)) 602foreach (StoragePropertyMapping propertyMapping in complexMapping.TypeMappings.SelectMany(m => m.AllProperties)) 642.SelectMany(e => ((EntityType)e).Properties) 643.Where(p => entitySet.ForeignKeyDependents.SelectMany(fk => fk.Item2.ToProperties).Contains(p)));
System\Data\Mapping\Update\Internal\ExtractorMetadata.cs (1)
65.SelectMany(fk => fk.Item2.ToProperties)).MakeReadOnly();
System\Data\Mapping\ViewGeneration\Structures\Domain.cs (1)
484CellConstantSet possibleValues = DeterminePossibleValues(conditionsForSlot.SelectMany(m => m.Select(c => c)), domain);
System\Data\Mapping\ViewGeneration\Validation\ErrorPatternMatcher.cs (1)
633return wrapper.Cells.SelectMany(c => c.SQuery.Conditions).Any();
System\Data\Mapping\ViewValidator.cs (1)
165IEnumerable<EdmProperty> properties = GetEntityTypes().SelectMany(entityType => entityType.Properties).Distinct();
System\Data\Metadata\MappingMetadataHelper.cs (1)
47return MetadataHelper.GetTypeAndParentTypesOf(childEntityType, mappingCollection.EdmItemCollection, true /*includeAbstractTypes*/).SelectMany(
System\Data\Objects\ObjectStateManager.cs (2)
496foreach (var dFkEntry in _danglingForeignKeys.SelectMany(kv => kv.Value)) 517foreach (var entry in _danglingForeignKeys.SelectMany(kv => kv.Value))
System.Data.Entity.Design (3)
System\Data\Entity\Design\EntityStoreSchemaGenerator.cs (3)
853foreach (var toPropertyOfAddedAssociation in session.AssociationTypes.SelectMany(t => t.ReferentialConstraints.SelectMany(refconst => refconst.ToProperties))) 855foreach (var toProperty in type.ReferentialConstraints.SelectMany(refconst => refconst.ToProperties))
System.ServiceModel (1)
System\ServiceModel\Channels\HttpHeadersWebHeaderCollection.cs (1)
265return values.SelectMany(str => str.Split(stringSplitArray, StringSplitOptions.None)).ToArray();
System.Web (2)
Compilation\BuildManager.cs (1)
1365.SelectMany(ai => ai.AssemblyInternal)
ModelBinding\ModelValidatorProviderCollection.cs (1)
31return this.SelectMany(provider => provider.GetValidators(metadata, context));