Skip to content

Commit

Permalink
发布2.2.9版本;
Browse files Browse the repository at this point in the history
  • Loading branch information
zqlovejyc committed Mar 24, 2022
1 parent acb1aff commit 386f961
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions SQLBuilder/Extensions/ContainerBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static class ContainerBuilderExtensions
/// 注入泛型仓储
/// </summary>
/// <typeparam name="T">仓储类型</typeparam>
/// <param name="this">依赖注入服务集合</param>
/// <param name="this">autofac容器</param>
/// <param name="sqlIntercept">sql拦截委托</param>
/// <param name="isEnableFormat">是否启用对表名和列名格式化,默认:否</param>
/// <param name="autoDispose">非事务的情况下,数据库连接是否自动释放,默认:是</param>
Expand Down Expand Up @@ -83,7 +83,7 @@ public static ContainerBuilder AddRepository<T>(
/// <summary>
/// 按需注入所有程序依赖的数据库仓储 <para>注意:仓储没有初始化MasterConnectionString和SlaveConnectionStrings</para>
/// </summary>
/// <param name="this">依赖注入服务集合</param>
/// <param name="this">autofac容器</param>
/// <param name="sqlIntercept">sql拦截委托</param>
/// <param name="isEnableFormat">是否启用对表名和列名格式化,默认:否</param>
/// <param name="autoDispose">非事务的情况下,数据库连接是否自动释放,默认:是</param>
Expand Down Expand Up @@ -196,7 +196,7 @@ public static (
/// <summary>
/// 创建IRepository委托,依赖AddAllRepository注入不同类型仓储
/// </summary>
/// <param name="provider">服务驱动</param>
/// <param name="provider">autofac组件上下文</param>
/// <param name="defaultName">默认数据库名称</param>
/// <param name="connectionStringName">连接字符串配置name</param>
/// <returns></returns>
Expand Down Expand Up @@ -239,7 +239,7 @@ public static Func<string, IRepository> CreateRepositoryFactory(
/// SQLBuilder仓储注入扩展
/// <para>注意:若要启用读写分离,则需要注入ILoadBalancer服务;</para>
/// </summary>
/// <param name="this">依赖注入服务集合</param>
/// <param name="this">autofac容器</param>
/// <param name="defaultName">默认数据库名称</param>
/// <param name="sqlIntercept">sql拦截委托</param>
/// <param name="isEnableFormat">是否启用对表名和列名格式化,默认:否</param>
Expand Down
4 changes: 2 additions & 2 deletions SQLBuilder/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.2.8.0")]
[assembly: AssemblyFileVersion("2.2.8.0")]
[assembly: AssemblyVersion("2.2.9.0")]
[assembly: AssemblyFileVersion("2.2.9.0")]

0 comments on commit 386f961

Please sign in to comment.