mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update sqlite demo
This commit is contained in:
parent
edd85a6381
commit
85126ea4d5
@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OrmTest
|
||||
namespace SqliteTest.UnitTest
|
||||
{
|
||||
/// <summary>
|
||||
/// Setting up the database name does not require you to create the database
|
||||
@ -20,7 +20,7 @@ namespace OrmTest
|
||||
return Environment.CurrentDirectory.Replace(@"\bin\Debug", "");
|
||||
}
|
||||
}
|
||||
public static string ConnectionString = @"DataSource="+ GetCurrentProjectPath + @"\DataBase\SqlSugar4xTest.sqlite";
|
||||
public static string ConnectionString = @"DataSource=" + GetCurrentProjectPath + @"\DataBase\SqlSugar4xTest.sqlite";
|
||||
public static string ConnectionString2 = @"DataSource=" + GetCurrentProjectPath + @"\DataBase\SqlSugar4xTest2.sqlite";
|
||||
public static string ConnectionString3 = @"DataSource=" + GetCurrentProjectPath + @"\DataBase\SqlSugar4xTest3.sqlite";
|
||||
}
|
@ -5,6 +5,7 @@ using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
namespace OrmTest
|
||||
{
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
|
||||
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using OrmTest;
|
||||
|
||||
namespace OrmTest
|
||||
namespace SqliteTest.UnitTest
|
||||
{
|
||||
class Program
|
||||
{
|
||||
@ -35,6 +36,6 @@ namespace OrmTest
|
||||
Console.ReadKey();
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
using SqlSugar;
|
||||
using SqliteTest.UnitTest;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
Loading…
Reference in New Issue
Block a user