You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
716 B
26 lines
716 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrmTest
|
|
{
|
|
public partial class NewUnitTest
|
|
{
|
|
public static void Queryable() {
|
|
|
|
var pageindex = 1;
|
|
var pagesize = 10;
|
|
var total = 0;
|
|
var totalPage = 0;
|
|
var list=Db.Queryable<Order>().ToPageList(pageindex, pagesize, ref total, ref totalPage);
|
|
|
|
Db.CodeFirst.InitTables(typeof(CarType));
|
|
Db.Updateable<CarType>()
|
|
.SetColumns(it => new CarType { State =SqlSugar.SqlFunc.IIF(it.State==true,false,true) }).Where(it=>true)
|
|
.ExecuteCommand();
|
|
|
|
}
|
|
}
|
|
}
|
|
|