Browse Source

Update demo

pull/3/head
sunkaixuna 4 years ago
parent
commit
7244a8f5d6
  1. 3
      Src/Asp.Net/SqlServerTest/Demo/Demo1_Queryable.cs

3
Src/Asp.Net/SqlServerTest/Demo/Demo1_Queryable.cs

@ -133,6 +133,9 @@ namespace OrmTest
var test09 = db.Queryable<Order>().PartitionBy(it=>it.Id).ToPageListAsync(1,2,0); var test09 = db.Queryable<Order>().PartitionBy(it=>it.Id).ToPageListAsync(1,2,0);
test09.Wait(); test09.Wait();
int c = 0;
var test10 = db.Queryable<Order>().ToPageList(1, 2, ref c);
Console.WriteLine("#### Examples End ####"); Console.WriteLine("#### Examples End ####");
} }

Loading…
Cancel
Save