mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 04:35:29 +08:00
Add QueryableByObject.IntoTable
This commit is contained in:
parent
56bff044cb
commit
2ee975bad5
@ -249,6 +249,11 @@ namespace SqlSugar
|
||||
|
||||
#region Result
|
||||
|
||||
public void IntoTable(Type type, string tableName)
|
||||
{
|
||||
var method = QueryableObj.GetType().GetMyMethod("IntoTable", 2, typeof(Type), typeof(string));
|
||||
var reslt = method.Invoke(QueryableObj, new object[] { type, tableName });
|
||||
}
|
||||
public object ToPageList(int pageNumber, int pageSize)
|
||||
{
|
||||
var method = QueryableObj.GetType().GetMyMethod("ToPageList", 2, typeof(int), typeof(int));
|
||||
|
Loading…
Reference in New Issue
Block a user