本文整理汇总了C#中IASTFactory.CreateNode方法的典型用法代码示例。如果您正苦于以下问题:C# IASTFactory.CreateNode方法的具体用法?C# IASTFactory.CreateNode怎么用?C# IASTFactory.CreateNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IASTFactory
的用法示例。
在下文中一共展示了IASTFactory.CreateNode方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HqlTreeNode
protected HqlTreeNode(int type, string text, IASTFactory factory, IEnumerable<HqlTreeNode> children)
{
Factory = factory;
_node = factory.CreateNode(type, text);
_children = new List<HqlTreeNode>();
AddChildren(children);
}
示例2: HqlTreeNode
protected HqlTreeNode(int type, string text, IASTFactory factory, params HqlTreeNode[] children)
{
_node = factory.CreateNode(type, text);
_children = new List<HqlTreeNode>();
foreach (var child in children)
{
_children.Add(child);
_node.AddChild(child.AstNode);
}
}
示例3: GenerateScalarColumns
/// <summary>
/// Generates the scalar column AST nodes for a given array of SQL columns
/// </summary>
public static void GenerateScalarColumns(IASTFactory factory, IASTNode node, string[] sqlColumns, int i)
{
if (sqlColumns.Length == 1)
{
GenerateSingleScalarColumn(factory, node, i);
}
else
{
node.Text = sqlColumns[0]; // Use the DOT node to emit the first column name.
// Create the column names, folled by the column aliases.
for (int j = 0; j < sqlColumns.Length; j++)
{
if (j > 0)
{
node = node.AddSibling(factory.CreateNode(HqlSqlWalker.SQL_TOKEN, sqlColumns[j]));
}
node = node.AddSibling(factory.CreateNode(HqlSqlWalker.SELECT_COLUMNS, " as " + NameGenerator.ScalarName(i, j)));
}
}
}
示例4: ParsePath
/// <summary>
/// Turns a path into an AST.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="factory">The AST factory to use.</param>
/// <returns>An HQL AST representing the path.</returns>
public static IASTNode ParsePath(string path, IASTFactory factory)
{
string[] identifiers = StringHelper.Split(".", path);
IASTNode lhs = null;
for (int i = 0; i < identifiers.Length; i++)
{
string identifier = identifiers[i];
IASTNode child = factory.CreateNode(HqlSqlWalker.IDENT, identifier);
if (i == 0)
{
lhs = child;
}
else
{
lhs = factory.CreateNode(HqlSqlWalker.DOT, ".", lhs, child);
}
}
if (log.IsDebugEnabled)
{
log.Debug("parsePath() : " + path + " -> " + ASTUtil.GetDebugstring(lhs));
}
return lhs;
}
示例5: GenerateSingleScalarColumn
public static void GenerateSingleScalarColumn(IASTFactory factory, IASTNode node, int i)
{
node.AddSibling(factory.CreateNode(HqlSqlWalker.SELECT_COLUMNS, " as " + NameGenerator.ScalarName(i, 0)));
}