public static Select Select(params IFieldRef[] fields) { QueryContext context = new QueryContext(); Select s = new Select(context, fields); return s; }
public static Select Select(uint top) { QueryContext context = new QueryContext(); context.RowLimit = top; Select s = new Select(context, null); return s; }
public static Select Select(uint top, params IFieldRef[] fields) { QueryContext context = new QueryContext(); context.RowLimit = top; Select s = new Select(context, fields); return s; }
public static Select Select() { QueryContext context = new QueryContext(); Select s = new Select(context, null); return s; }