mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-27 10:40:59 +08:00
- 调整 resources 转换成 static class 静态类;#1917
This commit is contained in:
@@ -38,7 +38,7 @@ namespace FreeSql.Odbc.Default
|
||||
if (_limit > 0 && _utils.Adapter.SelectTopStyle == OdbcAdapter.SelecTopStyle.Top) sb.Append("TOP ").Append(_skip + _limit).Append(" ");
|
||||
sb.Append(field);
|
||||
if (_skip > 0 && _utils.Adapter.SelectTopStyle == OdbcAdapter.SelecTopStyle.Top)
|
||||
throw new NotImplementedException(CoreStrings.S_NotImplementSkipOffset("Default"));
|
||||
throw new NotImplementedException(CoreErrorStrings.S_NotImplementSkipOffset("Default"));
|
||||
|
||||
sb.Append(" \r\nFROM ");
|
||||
var tbsjoin = _tables.Where(a => a.Type != SelectTableInfoType.From).ToArray();
|
||||
|
||||
Reference in New Issue
Block a user