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