WPF使用SqlLite数据库(EF版本)
添加NuGet包:Microsoft.EntityFrameworkCore.Sqlite 添加DataModel public class ResourceMessage { [Key]//主键 [DatabaseGenerated(DatabaseGeneratedOption.Identity)] //设置自增 public string Id { get; set; } public string? OtherK…
54 2024-11-20 去围观C#通过EF方式使用Sqllite数据库
引用Nuget包 Microsoft.EntityFrameworkCore.Sqlite 创建数据模型类 [Index(nameof(Index))]//添加索引 public class CacheChannelModel { [Key]//主键 [DatabaseGenerated(DatabaseGeneratedOption.Identity)] //设置自增 public int Id …
65 2024-11-20 去围观