mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
✨ support provider、Extensions Exceptions 多语言
This commit is contained in:
@ -36,7 +36,7 @@ namespace FreeSql.MsAccess.Curd
|
||||
if (_limit > 0) sb.Append("TOP ").Append(_skip + _limit).Append(" ");
|
||||
sb.Append(field);
|
||||
if (_skip > 0)
|
||||
throw new NotImplementedException("FreeSql.Provider.MsAccess 未实现 Skip/Offset 功能,如果需要分页请使用判断上一次 id");
|
||||
throw new NotImplementedException(CoreStrings.S_NotImplementSkipOffset("MsAccess"));
|
||||
sb.Append(" \r\nFROM ");
|
||||
var fromIndex = sb.Length;
|
||||
var ioinCounter = 0;
|
||||
|
Reference in New Issue
Block a user