1 instantiation of FunctionDefinition
System.Data.Entity (1)
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
381
functionDefinitions.Add(new
FunctionDefinition
(
10 references to FunctionDefinition
System.Data.Entity (10)
System\Data\Common\EntitySql\ParseResult.cs (4)
25
private readonly System.Collections.ObjectModel.ReadOnlyCollection<
FunctionDefinition
> _functionDefs;
27
internal ParseResult(DbCommandTree commandTree, List<
FunctionDefinition
> functionDefs)
42
/// List of <see cref="
FunctionDefinition
"/> objects describing query inline function definitions.
44
public System.Collections.ObjectModel.ReadOnlyCollection<
FunctionDefinition
> FunctionDefinitions { get { return this._functionDefs; } }
System\Data\Common\EntitySql\SemanticAnalyzer.cs (6)
103
List<
FunctionDefinition
> functionDefs;
239
List<
FunctionDefinition
> functionDefs;
261
private static DbExpression ConvertQueryStatementToDbExpression(AST.Statement astStatement, SemanticResolver sr, out List<
FunctionDefinition
> functionDefs)
343
private static List<
FunctionDefinition
> ConvertInlineFunctionDefinitions(AST.NodeList<AST.FunctionDefinition> functionDefList, SemanticResolver sr)
345
List<
FunctionDefinition
> functionDefinitions = new List<
FunctionDefinition
>();