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