2 types derived from Function
System.Data.Entity (2)
System\Data\EntityModel\SchemaObjectModel\FunctionImportElement.cs (1)
16internal class FunctionImportElement : Function
System\Data\EntityModel\SchemaObjectModel\ModelFunction.cs (1)
20internal sealed class ModelFunction : Function
1 instantiation of Function
System.Data.Entity (1)
System\Data\EntityModel\SchemaObjectModel\Schema.cs (1)
1079Function function = new Function(this);
35 references to Function
System.Data.Entity (35)
System\Data\EntityModel\SchemaObjectModel\EntityContainer.cs (3)
31private ISchemaElementLookUpTable<Function> _functionImports; 104public ISchemaElementLookUpTable<Function> FunctionImports 110_functionImports = new FilteredSchemaElementLookUpTable<Function, SchemaElement>(Members);
System\Data\EntityModel\SchemaObjectModel\FacetEnabledSchemaElement.cs (3)
28internal new Function ParentElement 32return base.ParentElement as Function; 87internal FacetEnabledSchemaElement(Function parentElement)
System\Data\EntityModel\SchemaObjectModel\Function.cs (1)
557protected void CloneSetFunctionFields(Function clone)
System\Data\EntityModel\SchemaObjectModel\FunctionCommandText.cs (1)
27public FunctionCommandText(Function parentElement)
System\Data\EntityModel\SchemaObjectModel\Parameter.cs (4)
40internal Parameter(Function parentElement) 136Parameter parameter = new Parameter((Function)parentElement); 192Function.RemoveTypeModifier(ref type, out typeModifier, out _isRefType); 385typeName = Function.GetTypeNameForErrorMessage(_type, _collectionKind, _isRefType);
System\Data\EntityModel\SchemaObjectModel\ReturnType.cs (4)
36internal ReturnType(Function parentElement) 101ReturnType parameter = new ReturnType((Function)parentElement); 163Function.RemoveTypeModifier(ref type, out typeModifier, out _isRefType); 316typeName = Function.GetTypeNameForErrorMessage(_type, _collectionKind, _isRefType);
System\Data\EntityModel\SchemaObjectModel\RowTypePropertyElement.cs (1)
71Function.RemoveTypeModifier(ref type, out typeModifier, out _isRefType);
System\Data\EntityModel\SchemaObjectModel\Schema.cs (8)
39private List<Function> _functions = null; 413foreach (Function function in Functions) 427foreach (Function function in Functions) 465foreach (Function function in this.Functions) 610private List<Function> Functions 616_functions = new List<Function>(); 1079Function function = new Function(this); 1166protected void AddFunctionType(Function function)
System\Data\Metadata\Converter.cs (10)
126List<Som.Function> funcsWithUnresolvedTypes = new List<Som.Function>(); 131if (element is Som.Function) 133funcsWithUnresolvedTypes.Add(element as Som.Function); 143foreach (var function in funcsWithUnresolvedTypes) 224else if (element is Som.Function) 226item = ConvertToFunction((Som.Function)element, providerManifest, 286foreach (Som.Function functionImport in element.FunctionImports) 855private static EdmFunction ConvertToFunction(Som.Function somFunction, 1099Som.Function somFunction,