Update access demo

This commit is contained in:
sunkaixuan 2022-07-27 13:02:37 +08:00
parent 3640f3a873
commit d19717ace5
4 changed files with 37 additions and 0 deletions

View File

@ -100,6 +100,12 @@
<Content Include="Test.accdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="x64\SQLite.Interop.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="x86\SQLite.Interop.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@ -13,6 +13,7 @@ namespace OrmTest
public static void Init()
{
EasyExamples();
AccessAndSqliteTest();
//QueryConditions();
JoinTable();
//Async();
@ -24,6 +25,7 @@ namespace OrmTest
//ConfiQuery();
}
private static void ConfiQuery()
{
var db = GetInstance();
@ -297,6 +299,17 @@ namespace OrmTest
Console.WriteLine("#### Subquery End ####");
}
private static void AccessAndSqliteTest()
{
var db = GetInstance();
var sqlitedb = GetSqliteInstance();
db.Queryable<Order>().ToList();
sqlitedb.DbMaintenance.CreateDatabase();
sqlitedb.CodeFirst.InitTables<Order>();
sqlitedb.Queryable<Order>().ToList();
db.Queryable<Order>().ToList();
}
private static void SqlFuncTest()
{
Console.WriteLine("");
@ -575,5 +588,23 @@ namespace OrmTest
}
});
}
private static SqlSugarClient GetSqliteInstance()
{
return new SqlSugarClient(new ConnectionConfig()
{
DbType = SqlSugar.DbType.Sqlite,
ConnectionString = "DataSource=/sqlite.db",
InitKeyType = InitKeyType.Attribute,
IsAutoCloseConnection = true,
AopEvents = new AopEvents
{
OnLogExecuting = (sql, p) =>
{
Console.WriteLine(sql);
Console.WriteLine(string.Join(",", p?.Select(it => it.ParameterName + ":" + it.Value)));
}
}
});
}
}
}

Binary file not shown.

Binary file not shown.