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