コード例 #1
0
ファイル: QuerySentence.cs プロジェクト: porter1130/MOSSArt
        public static Select Select(params IFieldRef[] fields)
        {
            QueryContext context = new QueryContext();

            Select s = new Select(context, fields);

            return s;
        }
コード例 #2
0
ファイル: QuerySentence.cs プロジェクト: porter1130/MOSSArt
        public static Select Select(uint top)
        {
            QueryContext context = new QueryContext();
            context.RowLimit = top;

            Select s = new Select(context, null);

            return s;
        }
コード例 #3
0
ファイル: QuerySentence.cs プロジェクト: porter1130/MOSSArt
        public static Select Select(uint top, params IFieldRef[] fields)
        {
            QueryContext context = new QueryContext();
            context.RowLimit = top;

            Select s = new Select(context, fields);

            return s;
        }
コード例 #4
0
ファイル: QuerySentence.cs プロジェクト: porter1130/MOSSArt
        public static Select Select()
        {
            QueryContext context = new QueryContext();

            Select s = new Select(context, null);
            return s;
        }