DBOptions.cs 244 B

12345678910
  1. namespace ProductionLineMonitor.EntityFramework
  2. {
  3. public static class DBOptions
  4. {
  5. /// <summary>
  6. /// 数据库连接字符串
  7. /// </summary>
  8. public static string? ConnectionString { get; set; }
  9. }
  10. }