Beispiel #1
0
        public static Select Select(params IFieldRef[] fields)
        {
            //IList<QueryExpression> sqlList = new List<QueryExpression>();
            QueryContext context = new QueryContext();

            Select s = new Select(context, fields);

            return s;
        }
Beispiel #2
0
        public static Select Select(uint top)
        {
            QueryContext context = new QueryContext();

            context.RowLimit = top;

            Select s = new Select(context, null);

            return s;
        }
Beispiel #3
0
        public static Select Select( uint top , params IFieldRef[] fields)
        {
            QueryContext context = new QueryContext();

            context.RowLimit = top;

            Select s = new Select(context, fields);

            return s;
        }
Beispiel #4
0
        public static Select Select()
        {
            QueryContext context = new QueryContext();

            Select s = new Select(context, null);

            return s;
        }