Update demo

This commit is contained in:
sunkaixuan 2025-01-20 15:58:48 +08:00
parent a7a0f775a4
commit 08653ed84d

View File

@ -58,7 +58,7 @@ namespace OrmTest
.Select<IUserInfo001>().ToSqlString(); .Select<IUserInfo001>().ToSqlString();
var userInfo5 = db.Queryable<UserInfo001>() var userInfo5 = db.Queryable<UserInfo001>()
.OfType<IUserInfo001>().ToList(); .Cast<IUserInfo001>().ToList();
} }
public interface IUserInfo001 public interface IUserInfo001