1 override of IsFunctionImport
System.Data.Entity (1)
System\Data\EntityModel\SchemaObjectModel\FunctionImportElement.cs (1)
36public override bool IsFunctionImport { get { return true; } }
9 references to IsFunctionImport
System.Data.Entity (9)
System\Data\EntityModel\SchemaObjectModel\Function.cs (1)
443if (!this.IsComposable && !this.IsFunctionImport)
System\Data\EntityModel\SchemaObjectModel\Parameter.cs (2)
232if (this.ParentElement.IsComposable && this.ParentElement.IsFunctionImport) 239if (this.ParentElement.IsComposable && this.ParentElement.IsFunctionImport)
System\Data\EntityModel\SchemaObjectModel\ReturnType.cs (2)
281Debug.Assert(!this.ParentElement.IsFunctionImport, "FunctionImports can't have sub elements in their return types, so we should NEVER see them here"); 285if (this.ParentElement.IsFunctionImport && _unresolvedEntitySet != null)
System\Data\Metadata\Converter.cs (4)
866if (!somFunction.IsFunctionImport && newGlobalItems.TryGetValue(somFunction, out globalItem)) 934if (somFunction.IsFunctionImport) 1009IsFunctionImport = somFunction.IsFunctionImport, 1016if (!somFunction.IsFunctionImport)