增加对sql只返回string的支持;

修复添加表单时,如果关联的数据库已存在的bug
This commit is contained in:
yubaolee
2022-01-19 15:49:29 +08:00
parent 636624a872
commit 99daa8752f
10 changed files with 352 additions and 139 deletions

View File

@@ -0,0 +1,11 @@
namespace OpenAuth.Repository.QueryObj
{
/// <summary>
/// 针对只返回字符串类型的数值。查询SQL必需使用Value作为返回字段
/// 因为string没有构造函数不能作为DbSet/DbQuery泛型的参数
/// </summary>
public class QueryStringObj
{
public string Value { get; set; }
}
}