generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
3.6 KiB
C#
131 lines
3.6 KiB
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Iot.Repository
|
|
{
|
|
/// <summary>
|
|
/// SQLite同步方法帮助类
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public class SQLiteHelper<T> where T : new()
|
|
{
|
|
private static readonly Lazy<SQLiteHelper<T>> lazy = new Lazy<SQLiteHelper<T>>(() => new SQLiteHelper<T>());
|
|
|
|
public static SQLiteHelper<T> Instance
|
|
{
|
|
get
|
|
{
|
|
return lazy.Value;
|
|
}
|
|
}
|
|
|
|
private readonly string _databasePath = Path.Combine(Environment.CurrentDirectory, "DeltaDatabase.db");
|
|
private readonly SQLiteConnection _connection; // SQLite连接对象
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
public SQLiteHelper()
|
|
{
|
|
// 创建SQLite连接对象并打开连接
|
|
_connection = new SQLiteConnection(_databasePath);
|
|
_connection.CreateTable<T>(); // 如果表不存在,则创建该表[不会创建重复的表]
|
|
}
|
|
|
|
/// <summary>
|
|
/// 数据插入
|
|
/// </summary>
|
|
/// <param name="item">要插入的数据项</param>
|
|
/// <returns></returns>
|
|
public int Insert(T item)
|
|
{
|
|
return _connection.Insert(item);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 批量数据插入
|
|
/// </summary>
|
|
/// <param name="item"></param>
|
|
/// <returns></returns>
|
|
public int InsertRange(List<T> items)
|
|
{
|
|
return _connection.InsertAll(items);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 数据删除
|
|
/// </summary>
|
|
/// <param name="id">要删除的数据的主键ID</param>
|
|
/// <returns></returns>
|
|
public int Delete(string id)
|
|
{
|
|
return _connection.Delete<T>(id);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 根据托盘码批量删除记录
|
|
/// </summary>
|
|
/// <param name="trayCode"></param>
|
|
/// <returns></returns>
|
|
public int DeleteRange(string trayCode)
|
|
{
|
|
return _connection.Execute($"DELETE FROM {typeof(T).Name} WHERE TrayCode = '{trayCode}'");
|
|
}
|
|
|
|
/// <summary>
|
|
/// sql直接执行
|
|
/// </summary>
|
|
/// <param name="sql"></param>
|
|
/// <returns></returns>
|
|
public int SqlExcute(string sql)
|
|
{
|
|
return _connection.Execute(sql);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 数据更新
|
|
/// </summary>
|
|
/// <param name="item">要更新的数据项</param>
|
|
/// <returns></returns>
|
|
public int Update(T item)
|
|
{
|
|
return _connection.Update(item);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 根据条件查询记录
|
|
/// </summary>
|
|
/// <param name="predExpr">查询条件</param>
|
|
/// <returns></returns>
|
|
public List<T> Query(Expression<Func<T, bool>> predExpr)
|
|
{
|
|
return _connection.Table<T>().Where(predExpr).ToList();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询所有数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public List<T> QueryAll()
|
|
{
|
|
return _connection.Table<T>().ToList();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 根据条件查询单条记录
|
|
/// </summary>
|
|
/// <param name="predExpr">查询条件</param>
|
|
/// <returns></returns>
|
|
public T QuerySingle(Expression<Func<T, bool>> predExpr)
|
|
{
|
|
return _connection.Table<T>().Where(predExpr).FirstOrDefault();
|
|
}
|
|
}
|
|
}
|