1952 lines
95 KiB
XML
1952 lines
95 KiB
XML
|
|
<?xml version="1.0"?>
|
|||
|
|
<doc>
|
|||
|
|
<assembly>
|
|||
|
|
<name>APT.Infrastructure.Api</name>
|
|||
|
|
</assembly>
|
|||
|
|
<members>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.BaseApiController.ThrowError(System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
抛出错误
|
|||
|
|
</summary>
|
|||
|
|
<param name="code"></param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.BaseApiController.SafeExecute``1(System.Func{``0},System.Int32)">
|
|||
|
|
<summary>
|
|||
|
|
为 基础操作 提供统一的返回格式,包含try / catch操作。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TResult">返回值类型</typeparam>
|
|||
|
|
<param name="execAction"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.BaseApiController.SafeJsonExecute``1(System.Action{APT.Infrastructure.Core.JsonActionResult{``0}})">
|
|||
|
|
<summary>
|
|||
|
|
为 基础操作 提供统一的返回格式,包含try / catch操作。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TResult">返回值类型</typeparam>
|
|||
|
|
<param name="execAction"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.BaseApiController.SafeGetPagedData``1(System.Action{APT.Infrastructure.Core.PagedActionResult{``0}})">
|
|||
|
|
<summary>
|
|||
|
|
为取 分页数据 提供统一的返回格式,包含try / catch操作。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TResult">返回值类型</typeparam>
|
|||
|
|
<param name="execAction"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.BaseApiController.GetExpressionFromQueryString``1">
|
|||
|
|
<summary>
|
|||
|
|
根据Request中的QueryString获得Linq表达式
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TEntity">实体对象</typeparam>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetUnitOfWork``1">
|
|||
|
|
<summary>
|
|||
|
|
获取操作单元
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntity``1(System.String,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ActionOrderEntities``1(System.Action{APT.Infrastructure.Core.IOrderable{``0}},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="orderBy">排序</param>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String,System.String,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Collections.Generic.Dictionary{System.String,System.String},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetPageEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取实体集合
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ActionOrderPageEntities``1(System.Action{APT.Infrastructure.Core.IOrderable{``0}},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取排序的实体集合
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="orderBy"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderPageEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取排序的实体集合
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="orderBy"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntity``1(System.String,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ActionOrderEntities``1(System.Action{APT.Infrastructure.Core.IOrderable{``0}},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="orderBy">排序</param>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="orderBy">排序</param>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.String,System.String,APT.Infrastructure.Core.BaseFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Collections.Generic.Dictionary{System.String,System.String},APT.Infrastructure.Core.BaseFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetPageEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取实体集合
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ActionOrderPageEntities``1(System.Action{APT.Infrastructure.Core.IOrderable{``0}},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取排序的实体集合
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="orderBy"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetOrderPageEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取排序的实体集合
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="orderBy"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetCount``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter)">
|
|||
|
|
<summary>
|
|||
|
|
获取条数
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.AddEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.AddAndGetEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.DeleteEntity``1(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.DeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.DeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.DeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.BantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑批量删除
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.RealDeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.RealDeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.RealDeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.RealBantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
批量删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids">id集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.UpdateEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.BantchAddEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.BantchUpdateEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.BantchSaveEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量保存实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">批量保存</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeAddEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeAddAndGetEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeDeleteEntity``1(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeDeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeDeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeDeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeBantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑批量删除
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeRealDeleteEntity``1(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeRealDeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeRealDeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeRealDeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeRealBantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
批量删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids">id集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeUpdateEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeBantchAddEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeBantchUpdateEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.TreeBantchSaveEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量保存实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">批量保存</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteSqlCommand``1(System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
/// <typeparam name="T">用于创建服务的实例类型</typeparam>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns>受影响的行数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteSqlCommand``1(APT.Infrastructure.Core.TransactionalBehavior,System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">用于创建服务的实例类型</typeparam>
|
|||
|
|
<param name="transactionalBehavior">事务行为</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns>受影响的行数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteReader``1(System.String,System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">用于创建服务的实例类型</typeparam>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteReader``1(System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">用于创建服务的实例类型</typeparam>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteReader``1(System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">用于创建服务的实例类型</typeparam>
|
|||
|
|
<param name="commandType">命令类型</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.SqlQuery``1(System.Type,System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
创建一个原始 SQL 查询,该查询将返回给定类型的元素。
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">用于创建服务的实例类型</typeparam>
|
|||
|
|
<param name="elementType">查询所返回对象的类型</param>
|
|||
|
|
<param name="sql">SQL 查询字符串</param>
|
|||
|
|
<param name="parameters">要应用于 SQL 查询字符串的参数</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteNonQuery``1(System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="commandType">命令类型</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteNonQueryByConn``1(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteReaderByConn``1(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteReaderPageByConn``1(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Int32,System.Int32,System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="pageIndex">分页索引 从1开始</param>
|
|||
|
|
<param name="pageLimit">每页条数 必填</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.GetSqlCountByConn``1(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取数据总条数。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<returns>数据总条数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.InitDbConnection``1(APT.Infrastructure.Core.DataBaseType,System.String)">
|
|||
|
|
<summary>
|
|||
|
|
获取数据库连接对象
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteScalarByConn``1(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
执行查询,并返回查询所返回的结果集中第一行的第一列。 所有其他的列和行将被忽略。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteScalarByConn``1(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Boolean,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
执行查询,并返回查询所返回的结果集中第一行的第一列。 所有其他的列和行将被忽略。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">数据库连接对象</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="close">是否自动关闭连接</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteReaderPageByConn``1(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Int32,System.Int32,System.Action{System.Data.Common.DbDataReader},System.Boolean)">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">连接对象</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="pageIndex">分页索引 从1开始</param>
|
|||
|
|
<param name="pageLimit">每页条数 必填</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
<param name="close">是否自动关闭连接</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonApiController.ExecuteReaderByConn``1(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader},System.Boolean)">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">连接对象</param>
|
|||
|
|
<param name="commandType">指令类型</param>
|
|||
|
|
<param name="sql">SQL语句</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="readerAction">委托</param>
|
|||
|
|
<param name="close">是否自动关闭连接</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.APTApiControllerBase`1">
|
|||
|
|
<summary>
|
|||
|
|
基类接口
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.APTApiControllerBase`1.UnitOfWork">
|
|||
|
|
<summary>
|
|||
|
|
单元操作
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitEntity(System.String,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
通过获取一条记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="param">ID</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitEntity(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
通过获取一条记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="param">ID</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitEntity(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
通过获取一条记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="param">ID</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitActionOrderEntities(System.Action{APT.Infrastructure.Core.IOrderable{`0}},System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序后的所有记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="orderBy">排序方式</param>
|
|||
|
|
<param name="expression">条件</param>
|
|||
|
|
<param name="fiter">分页参数</param>
|
|||
|
|
<param name="param">导航属性</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitEntities(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="fiter"></param>
|
|||
|
|
<param name="param"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitPaged(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
分页查询
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression">过滤条件</param>
|
|||
|
|
<param name="fiter">过滤实体fiter</param>
|
|||
|
|
<param name="param">导航属性</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitActionOrderPaged(System.Action{APT.Infrastructure.Core.IOrderable{`0}},System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序后分页查询
|
|||
|
|
</summary>
|
|||
|
|
<param name="orderBy">排序条件</param>
|
|||
|
|
<param name="expression">过滤条件</param>
|
|||
|
|
<param name="fiter">过滤实体fiter</param>
|
|||
|
|
<param name="param">导航属性</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitOrderPaged(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BasePageFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序后分页查询
|
|||
|
|
</summary>
|
|||
|
|
<param name="orderBy">排序条件</param>
|
|||
|
|
<param name="expression">过滤条件</param>
|
|||
|
|
<param name="fiter">过滤实体fiter</param>
|
|||
|
|
<param name="param">导航属性</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitCommitTransaction``1(System.Action,System.Func{``0})">
|
|||
|
|
<summary>
|
|||
|
|
提交事务
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TResult">返回结果</typeparam>
|
|||
|
|
<param name="execAction">数据处理</param>
|
|||
|
|
<param name="comitAction">数据提交</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitCommitTransaction(System.Action,System.Action)">
|
|||
|
|
<summary>
|
|||
|
|
提交事务
|
|||
|
|
</summary>
|
|||
|
|
<param name="execAction">执行方法</param>
|
|||
|
|
<param name="comitAction">提交方法</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitCommitTransaction(System.Action)">
|
|||
|
|
<summary>
|
|||
|
|
提交事务
|
|||
|
|
</summary>
|
|||
|
|
<param name="comitAction">提交方法</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiControllerBase`1.WitSafeExecute``1(System.Action,System.Func{APT.Infrastructure.Core.JsonActionResult{``0}})">
|
|||
|
|
<summary>
|
|||
|
|
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TResult">返回类型</typeparam>
|
|||
|
|
<param name="execAction">执行</param>
|
|||
|
|
<param name="comitAction">返回</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.APTApiController`1">
|
|||
|
|
<summary>
|
|||
|
|
基类接口
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">数据库类型</typeparam>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitAdd(`0)">
|
|||
|
|
<summary>
|
|||
|
|
添加一条记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitUpdate(`0)">
|
|||
|
|
<summary>
|
|||
|
|
更新一条记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitDelete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
根据条件删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression">条件</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitDelete(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitDelete(`0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitRealDelete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
根据条件删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression">条件</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitRealDelete(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitRealDelete(`0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitBantchAdd(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
批量新增数据
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitBantchUpdate(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新数据(效率快)
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitCount(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BaseFilter)">
|
|||
|
|
<summary>
|
|||
|
|
获取条数
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitRealDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitBatchDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID字符串删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitBatchDelete(System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
通过ID数组删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitRealBatchDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID字符串删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTApiController`1.WitRealBatchDelete(System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
通过ID数组删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.APTTreeApiController`1">
|
|||
|
|
<summary>
|
|||
|
|
树基类接口
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitAdd(`0)">
|
|||
|
|
<summary>
|
|||
|
|
添加一条记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitUpdate(`0)">
|
|||
|
|
<summary>
|
|||
|
|
更新一条记录
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitDelete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
根据条件删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression">条件</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitDelete(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitDelete(`0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitRealDelete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
根据条件删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression">条件</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitRealDelete(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitRealDelete(`0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitBantchAdd(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
批量新增数据
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitBantchUpdate(System.Collections.Generic.IEnumerable{`0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新数据(效率快)
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitCount(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},APT.Infrastructure.Core.BaseFilter)">
|
|||
|
|
<summary>
|
|||
|
|
获取条数
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitRealDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitBatchDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID字符串删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitBatchDelete(System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
通过ID数组删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitRealBatchDelete(System.String)">
|
|||
|
|
<summary>
|
|||
|
|
通过ID字符串删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.APTTreeApiController`1.WitRealBatchDelete(System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
通过ID数组删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.IDependency">
|
|||
|
|
<summary>
|
|||
|
|
依赖注入接口,只有实现该接口才可以被注册到IoC容器中
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.ServiceLocator">
|
|||
|
|
<summary>
|
|||
|
|
服务对象定位器
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.ServiceLocator.Instance">
|
|||
|
|
<summary>
|
|||
|
|
服务对象定位器实例
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ServiceLocator.GetService``1">
|
|||
|
|
<summary>
|
|||
|
|
获取泛型服务对象
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">服务对象的类型</typeparam>
|
|||
|
|
<returns></returns>
|
|||
|
|
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.WebSocketServiceHelper">
|
|||
|
|
<summary>
|
|||
|
|
webSocket 服务帮助类
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.WebSocketServiceHelper.InitService(System.Int32,System.Func{APT.Infrastructure.Core.WebSocketClientInfo,APT.Infrastructure.Core.WebSocketResponseInfo},System.Func{APT.Infrastructure.Core.WebSocketClientInfo,APT.Infrastructure.Core.WebSocketRequestInfo,APT.Infrastructure.Core.WebSocketResponseInfo},System.Action{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
初始化WebSocket服务
|
|||
|
|
</summary>
|
|||
|
|
<param name="port"></param>
|
|||
|
|
<param name="onOpen"></param>
|
|||
|
|
<param name="onClose"></param>
|
|||
|
|
<param name="onMessage"></param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.WebSocketServiceHelper.SendToAll(APT.Infrastructure.Core.WebSocketResponseInfo)">
|
|||
|
|
<summary>
|
|||
|
|
发生消息到所有用户
|
|||
|
|
</summary>
|
|||
|
|
<param name="responseInfo"></param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.WebSocketServiceHelper.SendToAll(APT.Infrastructure.Core.WebSocketResponseInfo,System.Func{APT.Infrastructure.Core.WebSocketClientInfo,System.Boolean})">
|
|||
|
|
<summary>
|
|||
|
|
发生消息到所有用户
|
|||
|
|
</summary>
|
|||
|
|
<param name="responseInfo"></param>
|
|||
|
|
<param name="checkClientInfoFunc">检查客户端有效性</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.WebSocketServiceHelper.SendToAll(System.Collections.Generic.List{APT.Infrastructure.Core.WebSocketResponseInfo})">
|
|||
|
|
<summary>
|
|||
|
|
发送信息到所有用户
|
|||
|
|
</summary>
|
|||
|
|
<param name="responseInfos"></param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.WebSocketServiceHelper.SendToAll(System.Collections.Generic.List{APT.Infrastructure.Core.WebSocketResponseInfo},System.Func{APT.Infrastructure.Core.WebSocketClientInfo,System.Boolean})">
|
|||
|
|
<summary>
|
|||
|
|
发送信息到所有用户
|
|||
|
|
</summary>
|
|||
|
|
<param name="responseInfos"></param>
|
|||
|
|
<param name="checkClientInfoFunc">检查客户端有效性</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.WebSocketServiceHelper.SendToUser(System.Guid,APT.Infrastructure.Core.WebSocketResponseInfo)">
|
|||
|
|
<summary>
|
|||
|
|
发送消息到指定用户
|
|||
|
|
</summary>
|
|||
|
|
<param name="userId"></param>
|
|||
|
|
<param name="responseInfo"></param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.WebSocketServiceHelper.SendToUser(System.Collections.Generic.List{APT.Infrastructure.Core.WebSocketResponseUserInfo})">
|
|||
|
|
<summary>
|
|||
|
|
发送消息到指定用户
|
|||
|
|
</summary>
|
|||
|
|
<param name="responseUseInfos"></param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.DeleteEntity``1(System.Guid)">
|
|||
|
|
<summary>
|
|||
|
|
逻辑删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.DeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="key"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.DeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="key"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.BantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑批量删除
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.DeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
逻辑删除
|
|||
|
|
</summary>
|
|||
|
|
<param name="key"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.UpdateEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
更新
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity">实体</param>
|
|||
|
|
<returns>是否成功</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.BantchUpdateEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns>是否成功</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.BantchSaveEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新(新增和保存一起)速度慢
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns>是否成功</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeAddEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeDeleteEntity``1(System.Guid)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeDeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeDeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeDeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeBantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑批量删除
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeUpdateEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeBantchAddEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeBantchUpdateEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.TreeBantchSaveEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量保存实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">批量保存</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetEntity``1(System.String,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Action{APT.Infrastructure.Core.IOrderable{``0}},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="orderBy">排序</param>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String,System.String,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Collections.Generic.Dictionary{System.String,System.String},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.CommonService.WitCommitTransaction(System.Action)">
|
|||
|
|
<summary>
|
|||
|
|
提交事务
|
|||
|
|
</summary>
|
|||
|
|
<param name="comitAction">提交方法</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.DomainServiceBase">
|
|||
|
|
<summary>
|
|||
|
|
领域服务基类
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TRepository">领域实体仓储对象</typeparam>
|
|||
|
|
<typeparam name="TEntity">领域实体</typeparam>
|
|||
|
|
<typeparam name="TKey">领域实体主键类型</typeparam>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteSqlCommand(System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns>受影响的行数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteSqlCommand(APT.Infrastructure.Core.TransactionalBehavior,System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="transactionalBehavior">事务行为</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns>受影响的行数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteReader(System.String,System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteReader(System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteReader(System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="commandType">命令类型</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.SqlQuery(System.Type,System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
创建一个原始 SQL 查询,该查询将返回给定类型的元素。
|
|||
|
|
</summary>
|
|||
|
|
<param name="elementType">查询所返回对象的类型</param>
|
|||
|
|
<param name="sql">SQL 查询字符串</param>
|
|||
|
|
<param name="parameters">要应用于 SQL 查询字符串的参数</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.InitDbConnection(APT.Infrastructure.Core.DataBaseType,System.String)">
|
|||
|
|
<summary>
|
|||
|
|
获取数据库连接对象
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteNonQuery(System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="commandType">命令类型</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteNonQueryByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteReaderByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteScalarByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
执行查询,并返回查询所返回的结果集中第一行的第一列。 所有其他的列和行将被忽略。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteScalarByConn(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Boolean,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
执行查询,并返回查询所返回的结果集中第一行的第一列。 所有其他的列和行将被忽略。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">数据库连接对象</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="close">是否自动关闭连接</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteReaderByConn(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader},System.Boolean)">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">连接对象</param>
|
|||
|
|
<param name="commandType">指令类型</param>
|
|||
|
|
<param name="sql">SQL语句</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="readerAction">委托</param>
|
|||
|
|
<param name="close">是否自动关闭连接</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteReaderPageByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Int32,System.Int32,System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="pageIndex">分页索引 从1开始</param>
|
|||
|
|
<param name="pageLimit">每页条数 必填</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.ExecuteReaderPageByConn(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Int32,System.Int32,System.Action{System.Data.Common.DbDataReader},System.Boolean)">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">连接对象</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="pageIndex">分页索引 从1开始</param>
|
|||
|
|
<param name="pageLimit">每页条数 必填</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
<param name="close">是否自动关闭连接</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.DomainServiceBase.GetSqlCountByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取数据总条数。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<returns>数据总条数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.ICommonService">
|
|||
|
|
<summary>
|
|||
|
|
通用接口,可以调用基类方法
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TEntity"></typeparam>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetEntity``1(System.String,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Boolean,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
查询实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Action{APT.Infrastructure.Core.IOrderable{``0}},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="orderBy">排序</param>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="orderBy">排序</param>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
获取所有数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T">类型</typeparam>
|
|||
|
|
<param name="expression">lambd表达式</param>
|
|||
|
|
<param name="filter">过滤器</param>
|
|||
|
|
<param name="paths">需要关联查询的数据</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.String,System.String,System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.GetOrderEntities``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},APT.Infrastructure.Core.BaseFilter,System.Collections.Generic.Dictionary{System.String,System.String},System.String[])">
|
|||
|
|
<summary>
|
|||
|
|
排序获取数据
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<param name="sort"></param>
|
|||
|
|
<param name="order"></param>
|
|||
|
|
<param name="filter"></param>
|
|||
|
|
<param name="paths"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.AddEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.DeleteEntity``1(System.Guid)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.DeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.DeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.DeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.BantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑批量删除
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<!-- Badly formed XML comment ignored for member "M:APT.Infrastructure.Core.ICommonService.UpdateEntity``1(``0)" -->
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.BantchAddEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.BantchUpdateEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.BantchSaveEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量保存实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">批量保存</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeAddEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeDeleteEntity``1(System.Guid)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="id"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeDeleteEntity``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="expression"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeDeleteEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeDeleteEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
删除实体
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeBantchDeleteEntity``1(System.Collections.Generic.List{System.Guid})">
|
|||
|
|
<summary>
|
|||
|
|
逻辑批量删除
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="T"></typeparam>
|
|||
|
|
<param name="ids"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeUpdateEntity``1(``0)">
|
|||
|
|
<summary>
|
|||
|
|
更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entity"></param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeBantchAddEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量添加实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集合</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeBantchUpdateEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量更新实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">实体集</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.ICommonService.TreeBantchSaveEntity``1(System.Collections.Generic.IEnumerable{``0})">
|
|||
|
|
<summary>
|
|||
|
|
批量保存实体
|
|||
|
|
</summary>
|
|||
|
|
<param name="entities">批量保存</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="T:APT.Infrastructure.Core.IDomainService">
|
|||
|
|
<summary>
|
|||
|
|
领域服务接口
|
|||
|
|
</summary>
|
|||
|
|
<typeparam name="TRepository"></typeparam>
|
|||
|
|
<typeparam name="TEntity"></typeparam>
|
|||
|
|
<typeparam name="TKey"></typeparam>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteSqlCommand(System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns>受影响的行数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteSqlCommand(APT.Infrastructure.Core.TransactionalBehavior,System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="transactionalBehavior">事务行为</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns>受影响的行数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteReader(System.String,System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteReader(System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteReader(System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令返回reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="commandType">命令类型</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<param name="readerAction">reader委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.SqlQuery(System.Type,System.String,System.Object[])">
|
|||
|
|
<summary>
|
|||
|
|
创建一个原始 SQL 查询,该查询将返回给定类型的元素。
|
|||
|
|
</summary>
|
|||
|
|
<param name="elementType">查询所返回对象的类型</param>
|
|||
|
|
<param name="sql">SQL 查询字符串</param>
|
|||
|
|
<param name="parameters">要应用于 SQL 查询字符串的参数</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteNonQuery(System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="commandType">命令类型</param>
|
|||
|
|
<param name="sql">命令字符串</param>
|
|||
|
|
<param name="parameters">参数</param>
|
|||
|
|
<returns></returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.InitDbConnection(APT.Infrastructure.Core.DataBaseType,System.String)">
|
|||
|
|
<summary>
|
|||
|
|
获取数据库连接对象
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteScalarByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
执行查询,并返回查询所返回的结果集中第一行的第一列。 所有其他的列和行将被忽略。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteScalarByConn(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Boolean,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
执行查询,并返回查询所返回的结果集中第一行的第一列。 所有其他的列和行将被忽略。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">数据库连接对象</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="close">是否关闭连接</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteReaderPageByConn(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Int32,System.Int32,System.Action{System.Data.Common.DbDataReader},System.Boolean)">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">连接对象</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="pageIndex">分页索引 从1开始</param>
|
|||
|
|
<param name="pageLimit">每页条数 必填</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
<param name="close">是否关闭连接</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteReaderByConn(APT.Infrastructure.Core.DataBaseType,System.Data.Common.DbConnection,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader},System.Boolean)">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="conn">连接对象</param>
|
|||
|
|
<param name="commandType">指令类型</param>
|
|||
|
|
<param name="sql">SQL语句</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="close">是否关闭连接</param>
|
|||
|
|
<param name="readerAction">委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteNonQueryByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteReaderByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.ExecuteReaderPageByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[],System.Int32,System.Int32,System.Action{System.Data.Common.DbDataReader})">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取Reader。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<param name="pageIndex">分页索引 从1开始</param>
|
|||
|
|
<param name="pageLimit">每页条数 必填</param>
|
|||
|
|
<param name="readerAction">执行委托</param>
|
|||
|
|
</member>
|
|||
|
|
<member name="M:APT.Infrastructure.Core.IDomainService.GetSqlCountByConn(APT.Infrastructure.Core.DataBaseType,System.String,System.Data.CommandType,System.String,System.Data.Common.DbParameter[])">
|
|||
|
|
<summary>
|
|||
|
|
根据数据库连接对数据库执行给定的 DDL/DML 命令获取数据总条数。
|
|||
|
|
</summary>
|
|||
|
|
<param name="dataBaseType">数据库类型</param>
|
|||
|
|
<param name="connString">连接字符串</param>
|
|||
|
|
<param name="commandType">sql 类型</param>
|
|||
|
|
<param name="sql">sql</param>
|
|||
|
|
<param name="dbParameters">参数</param>
|
|||
|
|
<returns>数据总条数</returns>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.CurrentSession">
|
|||
|
|
<summary>
|
|||
|
|
当前会话
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.Logger">
|
|||
|
|
<summary>
|
|||
|
|
日志记录器
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.DepartmentID">
|
|||
|
|
<summary>
|
|||
|
|
部门ID
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.CustomVariable1">
|
|||
|
|
<summary>
|
|||
|
|
自定义变量1
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.CustomVariable2">
|
|||
|
|
<summary>
|
|||
|
|
自定义变量2
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.CustomVariable3">
|
|||
|
|
<summary>
|
|||
|
|
自定义变量3
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.CustomVariable4">
|
|||
|
|
<summary>
|
|||
|
|
自定义变量4
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.CustomVariable5">
|
|||
|
|
<summary>
|
|||
|
|
自定义变量5
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
<member name="P:APT.Infrastructure.Core.AppContext.SysPermission">
|
|||
|
|
<summary>
|
|||
|
|
权限缓存
|
|||
|
|
</summary>
|
|||
|
|
</member>
|
|||
|
|
</members>
|
|||
|
|
</doc>
|