mirror of
https://gitee.com/dotnetchina/MiniExcel.git
synced 2024-12-05 05:17:34 +08:00
b27b169e2a
* Format the code and remove trailing whitespaces * Update Visual Studio gitignore template * Refactor: rename variables, add comments * Support writing DateOnly type to Excel --------- Co-authored-by: Jef Van den Brandt <Jef.VandenBrandt@cheops.be>
13 lines
311 B
C#
13 lines
311 B
C#
namespace MiniExcelLibs.Tests.Utils
|
|
{
|
|
using System.Data.SQLite;
|
|
|
|
internal static class Db
|
|
{
|
|
internal static SQLiteConnection GetConnection(string connectionString = "Data Source=:memory:")
|
|
{
|
|
return new SQLiteConnection(connectionString);
|
|
}
|
|
}
|
|
}
|