We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
这三个成员或方法,已标记过期半年:
[Obsolete(@"即将删除(保留到2020-12-01), 请改用 UnitOfWorkManager 的方式管理事务 https://github.com/dotnetcore/FreeSql/issues/289")]
有些原来是 params object[] 这样的参数,被改成了 object[],如下:
//原来: Task<List<T>> QueryAsync<T>(CommandType cmdType, string cmdText, params DbParameter[] cmdParms); //现在: Task<List<T>> QueryAsync<T>(CommandType cmdType, string cmdText, DbParameter[] cmdParms, CancellationToken cancellationToken = default);
The text was updated successfully, but these errors were encountered:
v1.7.0 版本调整说明:#382
v1.5.0 版本调整说明:#318
v1.4.0 版本调整说明(包含v1.3.6+):#260
Sorry, something went wrong.
No branches or pull requests
1、移除 IUnitOfWork Enable/Close/Open 属性或方法。
这三个成员或方法,已标记过期半年:
2、所有异步方法增加参数 CancellationToken cancellationToken = default
有些原来是 params object[] 这样的参数,被改成了 object[],如下:
The text was updated successfully, but these errors were encountered: