24 references to IsComposableAttribute
System.Data.Entity (17)
System\Data\Common\CommandTrees\ExpressionBuilder\Internal\ArgumentValidation.cs (2)
1474if (!function.IsComposableAttribute) 1877if (function.IsComposableAttribute && null == function.ReturnParameter)
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
1043if (metadataFunctionGroup.FunctionMetadata.Any(f => !f.IsComposableAttribute))
System\Data\Common\Utils\CommandHelper.cs (1)
192if (functionImport.IsComposableAttribute)
System\Data\EntityClient\EntityCommandDefinition.cs (1)
245Debug.Assert(!functionCommandTree.EdmFunction.IsComposableAttribute, "functionCommandTree.EdmFunction must be non-composable.");
System\Data\Mapping\FunctionImportMappingComposable.cs (2)
41Debug.Assert(functionImport.IsComposableAttribute, "functionImport.IsComposableAttribute"); 42Debug.Assert(targetFunction.IsComposableAttribute, "targetFunction.IsComposableAttribute");
System\Data\Mapping\FunctionImportMappingNonComposable.cs (2)
35Debug.Assert(!functionImport.IsComposableAttribute, "!functionImport.IsComposableAttribute"); 36Debug.Assert(!targetFunction.IsComposableAttribute, "!targetFunction.IsComposableAttribute");
System\Data\Mapping\StorageMappingItemLoader.cs (5)
1541if (!functionImport.IsComposableAttribute && targetFunction.IsComposableAttribute) 1548else if (functionImport.IsComposableAttribute && !targetFunction.IsComposableAttribute) 1584if (functionImport.IsComposableAttribute)
System\Data\Metadata\StoreItemCollection.cs (1)
412IsComposable = sTypeFunction.IsComposableAttribute,
System\Data\Objects\ELinq\MethodCallTranslator.cs (1)
612if (!function.IsComposableAttribute)
System\Data\Query\PlanCompiler\PreProcessor.cs (1)
1123PlanCompiler.Assert(op.Function.IsComposableAttribute, "Cannot process a non-composable function inside query tree composition.");
System.Data.Entity.Design (7)
System\Data\Entity\Design\Common\MetadataItemSerializer.cs (3)
185_writer.WriteAttributeString(XmlConstants.IsComposable, GetAttributeValueString(function.IsComposableAttribute)); 188else if (function.IsFunctionImport && function.IsComposableAttribute) 701foreach (EdmFunction functionImport in container.FunctionImports.Where(fi => fi.IsComposableAttribute))
System\Data\Entity\Design\Common\OneToOneMappingSerializer.cs (2)
308Debug.Assert(storeFunction.IsComposableAttribute, "storeFunction.IsComposableAttribute"); 310Debug.Assert(functionImport.IsComposableAttribute, "functionImport.IsComposableAttribute");
System\Data\Entity\Design\EntityModelSchemaGenerator.cs (2)
82f.IsComposableAttribute == true && 505f => f.IsComposableAttribute &&