OpenAuth.Net/OpenAuth.Repository/QueryObj/QueryStringObj.cs
yubaolee 99daa8752f 增加对sql只返回string的支持;
修复添加表单时,如果关联的数据库已存在的bug
2022-01-19 15:49:29 +08:00

11 lines
345 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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