3 instantiations of DbFunctionCommandTree
System.Data.Entity (3)
System\Data\EntityClient\EntityCommand.cs (1)
612resultTree = new DbFunctionCommandTree(this.Connection.GetMetadataWorkspace(), DataSpace.CSpace, function, null, queryParams);
System\Data\EntityClient\EntityCommandDefinition.cs (1)
113DbFunctionCommandTree providerCommandTree = new DbFunctionCommandTree(entityCommandTree.MetadataWorkspace, DataSpace.SSpace,
System\Data\Mapping\Update\Internal\UpdateTranslator.cs (1)
706DbFunctionCommandTree tree = new DbFunctionCommandTree(m_metadataWorkspace, DataSpace.SSpace,
11 references to DbFunctionCommandTree
System.Data.Entity (11)
System\Data\Common\CommandTrees\BasicCommandTreeVisitor.cs (2)
61this.VisitFunctionCommandTree((DbFunctionCommandTree)commandTree); 93protected virtual void VisitFunctionCommandTree(DbFunctionCommandTree functionTree)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
72internal string Print(DbFunctionCommandTree tree)
System\Data\EntityClient\EntityCommandDefinition.cs (4)
92DbFunctionCommandTree entityCommandTree = (DbFunctionCommandTree)commandTree; 113DbFunctionCommandTree providerCommandTree = new DbFunctionCommandTree(entityCommandTree.MetadataWorkspace, DataSpace.SSpace, 241private static FunctionImportMappingNonComposable GetTargetFunctionMapping(DbFunctionCommandTree functionCommandTree)
System\Data\Mapping\Update\Internal\UpdateTranslator.cs (1)
706DbFunctionCommandTree tree = new DbFunctionCommandTree(m_metadataWorkspace, DataSpace.SSpace,
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
432return GenerateFunctionSql((DbFunctionCommandTree)tree, out commandType); 442private static string GenerateFunctionSql(DbFunctionCommandTree tree, out CommandType commandType)
System\Data\SqlClient\SqlProviderServices.cs (1)
107function = ((DbFunctionCommandTree)commandTree).EdmFunction;