本文整理汇总了C#中QueryOrdering类的典型用法代码示例。如果您正苦于以下问题:C# QueryOrdering类的具体用法?C# QueryOrdering怎么用?C# QueryOrdering使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
QueryOrdering类属于命名空间,在下文中一共展示了QueryOrdering类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: VisitQueryOrdering
public virtual void VisitQueryOrdering(QueryOrdering queryOrdering)
{
VisitChildren (queryOrdering);
}
开发者ID:modulexcite,项目名称:ICSharpCode.Decompiler-retired,代码行数:4,代码来源:DepthFirstAstVisitor.cs
示例2: VisitQueryOrdering
public void VisitQueryOrdering(QueryOrdering queryOrdering)
{
StartNode(queryOrdering);
queryOrdering.Expression.AcceptVisitor(this);
switch (queryOrdering.Direction) {
case QueryOrderingDirection.Ascending:
Space();
WriteKeyword(QueryOrdering.AscendingKeywordRole);
break;
case QueryOrderingDirection.Descending:
Space();
WriteKeyword(QueryOrdering.DescendingKeywordRole);
break;
}
EndNode(queryOrdering);
}
开发者ID:x-strong,项目名称:ILSpy,代码行数:16,代码来源:CSharpOutputVisitor.cs
示例3: Visit
public override object Visit(Mono.CSharp.Linq.OrderByAscending orderByAscending)
{
currentQueryOrderClause = new QueryOrderClause();
var location2 = LocationsBag.GetLocations(orderByAscending.block);
if (location2 != null)
currentQueryOrderClause.AddChild(new CSharpTokenNode(Convert(location2 [0]), QueryOrderClause.OrderbyKeywordRole), QueryOrderClause.OrderbyKeywordRole);
var ordering = new QueryOrdering();
if (orderByAscending.Expr != null)
ordering.AddChild((Expression)orderByAscending.Expr.Accept(this), Roles.Expression);
var location = LocationsBag.GetLocations(orderByAscending);
if (location != null) {
ordering.Direction = QueryOrderingDirection.Ascending;
ordering.AddChild(new CSharpTokenNode(Convert(location [0]), QueryOrdering.AscendingKeywordRole), QueryOrdering.AscendingKeywordRole);
}
currentQueryOrderClause.AddChild(ordering, QueryOrderClause.OrderingRole);
return currentQueryOrderClause;
}
开发者ID:0xb1dd1e,项目名称:NRefactory,代码行数:17,代码来源:CSharpParser.cs
示例4: QueryOptions
public QueryOptions(QueryOrdering ordering, QueryCriterias criterias)
{
this.Ordering = ordering;
this.Criterias = criterias;
}
开发者ID:btungut,项目名称:Cruder.Net,代码行数:5,代码来源:QueryOptions.cs
示例5: Visit
public override object Visit (Mono.CSharp.Linq.ThenByDescending thenByDescending)
{
var result = new QueryOrderClause ();
var ordering = new QueryOrdering ();
ordering.AddChild ((Expression)thenByDescending.Expr.Accept (this), QueryWhereClause.Roles.Expression);
var location = LocationsBag.GetLocations (thenByDescending);
if (location != null) {
ordering.Direction = QueryOrderingDirection.Descending;
ordering.AddChild (new CSharpTokenNode (Convert (location[0]), "ascending".Length), QueryWhereClause.Roles.Keyword);
}
result.AddChild (ordering, QueryOrderClause.OrderingRole);
return result;
}
开发者ID:N3X15,项目名称:ILSpy,代码行数:15,代码来源:CSharpParser.cs
示例6: VisitQueryOrdering
public virtual void VisitQueryOrdering(QueryOrdering queryOrdering)
{
if (this.ThrowException)
{
throw (Exception)this.CreateException(queryOrdering);
}
}
开发者ID:fabriciomurta,项目名称:BridgeUnified,代码行数:7,代码来源:Visitor.Exception.cs
示例7: VisitQueryOrdering
public StringBuilder VisitQueryOrdering(QueryOrdering queryOrdering, int data)
{
throw new SLSharpException("SL# does not understand LINQ.");
}
开发者ID:hach-que,项目名称:SLSharp,代码行数:4,代码来源:VisitorBase.Illegal.cs
示例8: VisitQueryOrdering
public override void VisitQueryOrdering(QueryOrdering queryOrdering)
{
base.VisitQueryOrdering(queryOrdering);
indexData.HasOrder = true;
}
开发者ID:j2jensen,项目名称:ravendb,代码行数:5,代码来源:IndexVisitor.cs
示例9: VisitQueryOrdering
public void VisitQueryOrdering(QueryOrdering queryOrdering)
{
throw new NotImplementedException();
}
开发者ID:CompilerKit,项目名称:CodeWalk,代码行数:4,代码来源:AstCsToJson.cs
示例10: VisitQueryOrdering
public void VisitQueryOrdering(QueryOrdering node)
{
NotSupported(node);
}
开发者ID:evanw,项目名称:minisharp,代码行数:4,代码来源:Lower.cs
注:本文中的QueryOrdering类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论