Mercurial > pub > bltoolkit
view Source/Data/Sql/Precedence.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; namespace BLToolkit.Data.Sql { public class Precedence { public const int Primary = 100; // (x) x.y f(x) a[x] x++ x-- new typeof sizeof checked unchecked public const int Unary = 90; // + - ! ++x --x (T)x public const int Multiplicative = 80; // * / % public const int Subtraction = 70; // - public const int Additive = 60; // + public const int Comparison = 50; // ANY ALL SOME EXISTS, IS [NOT], IN, BETWEEN, LIKE, < > <= >=, == != public const int Bitwise = 40; // ^ public const int LogicalNegation = 30; // NOT public const int LogicalConjunction = 20; // AND public const int LogicalDisjunction = 10; // OR public const int Unknown = 0; } }