using Blahblah.FlowerStory.Server.Data.Model; using Microsoft.EntityFrameworkCore; namespace Blahblah.FlowerStory.Server.Data; /// /// 数据库管理类 /// /// 选项参数 public class FlowerDatabase(DbContextOptions options) : DbContext(options) { /// /// 用户集 /// public DbSet Users { get; set; } /// /// 花草集 /// public DbSet Flowers { get; set; } /// /// 记录集 /// public DbSet Records { get; set; } /// /// 会话令牌集 /// public DbSet Tokens { get; set; } /// /// 照片集 /// public DbSet Photos { get; set; } /// /// 评论集 /// public DbSet Comments { get; set; } }