mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-26 22:25:49 +08:00
Compatible with .NET CORE
This commit is contained in:
@@ -5,7 +5,6 @@ using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Linq;
|
||||
using System.Linq.Expressions;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
@@ -633,7 +632,7 @@ namespace SqlSugar
|
||||
{
|
||||
if (result.IsValuable())
|
||||
{
|
||||
if (entityType.GetTypeInfo().BaseType.IsValuable() && entityType.GetTypeInfo().BaseType == PubConst.ModelType)
|
||||
if (entityType.BaseType.IsValuable() && entityType.BaseType == PubConst.ModelType)
|
||||
{
|
||||
foreach (var item in result)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user