public static SqlFunctionCallScalarExpression Create( string name, bool isUdf, IReadOnlyList <SqlScalarExpression> arguments) { SqlIdentifier sqlIdentifier; if (!SqlFunctionCallScalarExpression.FunctionIdentifiers.TryGetValue(name, out sqlIdentifier)) { sqlIdentifier = SqlIdentifier.Create(name); } return(SqlFunctionCallScalarExpression.Create(sqlIdentifier, isUdf, arguments)); }
public static SqlFunctionCallScalarExpression CreateBuiltin(SqlIdentifier name, params SqlScalarExpression[] arguments) { return(SqlFunctionCallScalarExpression.Create(name, false, arguments)); }
public static SqlFunctionCallScalarExpression CreateBuiltin(SqlIdentifier name, IReadOnlyList <SqlScalarExpression> arguments) { return(SqlFunctionCallScalarExpression.Create(name, false, arguments)); }