SqlSugar/Src/Asp.NetCore2/MongoDbTest/OrmTest/OrmTest.cs

21 lines
455 B
C#
Raw Normal View History

2025-05-04 15:59:46 +08:00
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();
}
}
}