restrictions.gt --> great-than > 大於
restrictions.ge --> great-equal >= 大於等於
restrictions.lt --> less-than, < 小於
restrictions.le --> less-equal <= 小於等於
restrictions.between --> 對應sql的between子句
restrictions.like --> 對應sql的like子句
restrictions.in --> 對應sql的in子句
restrictions.and --> and 關係
restrictions.or --> or 關係
restrictions.isnull --> 判斷屬性是否為空,為空則返回true
restrictions.isnotnull --> 與isnull相反
restrictions.sqlrestriction --> sql限定的查詢
order.asc --> 根據傳入的字段進行公升序排序
order.desc --> 根據傳入的字段進行降序排序
matchmode.exact --> 字串精確匹配.相當於"like 'value'"
matchmode.anywhere --> 字串在中間匹配.相當於"like '%value%'"
matchmode.start --> 字串在最前面的位置.相當於"like 'value%'"
matchmode.end --> 字串在最後面的位置.相當於"like '%value'"
QBC常用方法
restrictions.eq equal,等於.restrictions.alleq 引數為map物件,使用key value進行多個等於的比對,相當於多個restrictions.eq的效果 restrictions.gt great than 大於 restrictions.ge great ...
Path類常用方法說明
path常用方法 string s path.combine d test 2.jpg 合併兩個路徑,自動處理分隔符的問題 console.writeline s string s1 path.getdirectoryname d build build build database.cs 得到檔案...
說明符和限定符
有些被稱為儲存說明符或cv 限定符的c 關鍵字提供了其他有關儲存的資訊。儲存說明符 1 auto 在c 中不再是說明符 2 register 3 static 4 extern 5 thread local c 11新增的 6 mutable 下面就是cv限定符 1 const 2 volatile...