mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 18:48:09 +08:00
Add demo
This commit is contained in:
49
Src/Asp.NetCore2/MongoDbTest/UnitTest/StringPrimaryKey.cs
Normal file
49
Src/Asp.NetCore2/MongoDbTest/UnitTest/StringPrimaryKey.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
using SqlSugar.MongoDb;
|
||||
namespace MongoDbTest
|
||||
{
|
||||
internal class StringPrimaryKey
|
||||
{
|
||||
public static void Init()
|
||||
{
|
||||
var db = DbHelper.GetNewDb();
|
||||
db.DbMaintenance.TruncateTable<Student>();
|
||||
var id = Guid.NewGuid().ToString();
|
||||
db.Insertable(new Student()
|
||||
{
|
||||
Name = "a",
|
||||
Id = id
|
||||
|
||||
}).ExecuteCommand();
|
||||
|
||||
var data = db.Queryable<Student>().Where(it => it.Id == id).ToList();
|
||||
if (data.First().Id != id) Cases.ThrowUnitError();
|
||||
data.First().Name = "a2";
|
||||
db.Updateable(data).ExecuteCommand();
|
||||
var data2 = db.Queryable<Student>().Where(it => it.Id == id).ToList();
|
||||
if (data.First().Name != "a2") Cases.ThrowUnitError();
|
||||
Console.WriteLine(db.Queryable<Student>().Count());
|
||||
db.Deleteable<Student>().Where(it => it.Id == id).ExecuteCommand();
|
||||
if (db.Queryable<Student>().Count() != 0) Cases.ThrowUnitError();
|
||||
db.Insertable(new Student()
|
||||
{
|
||||
Name = "a",
|
||||
Id = id
|
||||
}).ExecuteCommand();
|
||||
var rows = db.Deleteable<Student>().Where(it => new string[] { id }.Contains(it.Id)).ExecuteCommand();
|
||||
if (db.Queryable<Student>().Count() != 0) Cases.ThrowUnitError();
|
||||
db.Insertable(new Student()
|
||||
{
|
||||
Name = "a",
|
||||
Id = id
|
||||
}).ExecuteCommand();
|
||||
var row2 = db.Deleteable<Student>(new Student() { Id = id }).ExecuteCommand();
|
||||
if (db.Queryable<Student>().Count() != 0) Cases.ThrowUnitError();
|
||||
}
|
||||
|
||||
[SqlSugar.SugarTable("UnitStutsdsdfr5fazzz1")]
|
||||
public class Student : MongoDbBaseString //继承string主键
|
||||
{
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user