您的位置:首页 > 文旅 > 旅游 > 网络自媒体培训_站群源码_网络公司排行榜_网络培训心得

网络自媒体培训_站群源码_网络公司排行榜_网络培训心得

2024/12/23 11:25:04 来源:https://blog.csdn.net/u011511086/article/details/144478476  浏览:    关键词:网络自媒体培训_站群源码_网络公司排行榜_网络培训心得
网络自媒体培训_站群源码_网络公司排行榜_网络培训心得

在.NET环境中使用Entity Framework Core(EF Core)连接SQLite数据库时,报错。
使用框架 .NET8
错误信息:
Exception: You need to call SQLitePCL.raw.SetProvider(). If you are using a bundle package, this is done by calling SQLitePCL.Batteries.Init().

这个错误主要原因就是没有安装nuget包: SQLitePCLRaw.bundle_e_sqlite3

需要安装包:
SQLitePCLRaw.bundle_e_sqlite3,版本 2.1.10
Microsoft.EntityFrameworkCore.Sqlite.Core,版本 9.0.0

ef core上下文参考代码:

using Microsoft.Data.Sqlite;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Options;
using System.Reflection.Metadata;
using WpfRepairProject.Model;namespace WpfRepairProject.IData_impl
{public class EFContextSQLite : DbContext{protected override void OnConfiguring(DbContextOptionsBuilder options){try{ string  filePath = "G:\\DataBase\\ljRepaireProject.sqlite"; options.UseSqlite($"Data Source={filePath}");             //设置不跟踪所有查询  options.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking);#if DEBUG//启用敏感数据日志记录options.EnableSensitiveDataLogging();//记录日志          options.LogTo(msg =>{//调试-窗口消息System.Diagnostics.Debug.WriteLine(msg);//输出-窗口消息Console.WriteLine(msg);}, Microsoft.Extensions.Logging.LogLevel.Information);
#endif}catch (Exception ex){ex = ex.InnerException ?? ex;//LogHelpter.AddLog("数据库连接异常," + ex.Message, "error_DbContext");}}public DbSet<K_department> K_department { get; set; }}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com