12 references to EdmFunction
System.Data.Entity (12)
System\Data\Common\CommandTrees\DbFunctionCommandTree.cs (3)
66
/// Gets the <see cref="
EdmFunction
"/> that represents the function to invoke
105
if (this.
EdmFunction
!= null)
107
dumper.Dump(this.
EdmFunction
);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (2)
77
if (tree.
EdmFunction
!= null)
79
funcNode.Children.Add(_visitor.VisitFunction(tree.
EdmFunction
, null));
System\Data\EntityClient\EntityCommandDefinition.cs (4)
96
IList<FunctionParameter> returnParameters = entityCommandTree.
EdmFunction
.ReturnParameters;
245
Debug.Assert(!functionCommandTree.
EdmFunction
.IsComposableAttribute, "functionCommandTree.EdmFunction must be non-composable.");
249
if (!functionCommandTree.MetadataWorkspace.TryGetFunctionImportMapping(functionCommandTree.
EdmFunction
, out targetFunctionMapping))
251
throw EntityUtil.InvalidOperation(System.Data.Entity.Strings.EntityClient_UnmappedFunctionImport(functionCommandTree.
EdmFunction
.FullName));
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
444
Debug.Assert(tree.
EdmFunction
!= null, "DbFunctionCommandTree function cannot be null");
446
EdmFunction function = tree.
EdmFunction
;
System\Data\SqlClient\SqlProviderServices.cs (1)
107
function = ((DbFunctionCommandTree)commandTree).
EdmFunction
;