Update QueryableByObject.Select

This commit is contained in:
sunkaixuan
2025-07-10 18:06:01 +08:00
parent f5ad24aaf8
commit e621f7e4f9

View File

@@ -183,7 +183,7 @@ namespace SqlSugar
}
public QueryMethodInfo Select(string expShortName, FormattableString expSelect, Type resultType)
{
var method = QueryableObj.GetType().GetMyMethod("Select", 3, typeof(string),typeof(FormattableString),typeof(Type));
var method = QueryableObj.GetType().GetMyMethodIsGenericMethod("Select", 3, typeof(string),typeof(FormattableString),typeof(Type));
if (method.IsGenericMethodDefinition)
{
method = method.MakeGenericMethod(resultType);