mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-16 13:09:33 +08:00
21 lines
455 B
C#
21 lines
455 B
C#
![]() |
using MongoDbTest.DBHelper;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MongoDbTest
|
|||
|
{
|
|||
|
public class OrmTest
|
|||
|
{
|
|||
|
public static void Init()
|
|||
|
{
|
|||
|
var db = DbHelper.GetNewDb();
|
|||
|
db.Insertable(new OrderInfo() { CreateTime = DateTime.Now, Name = "a", Price = 1 })
|
|||
|
.ExecuteCommand();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|