| | | 1 | | namespace ArturRios.Data.Relational.Core.Configuration; |
| | | 2 | | |
| | | 3 | | /// <summary> |
| | | 4 | | /// Base configuration options for an Entity Framework Core DbContext. |
| | | 5 | | /// </summary> |
| | | 6 | | public class BaseDbContextOptions |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// The database engine used to select the EF Core provider at runtime. |
| | | 10 | | /// </summary> |
| | 13 | 11 | | public DatabaseType DatabaseType { get; init; } |
| | | 12 | | |
| | | 13 | | /// <summary> |
| | | 14 | | /// The database connection string. |
| | | 15 | | /// </summary> |
| | 18 | 16 | | public string ConnectionString { get; init; } = string.Empty; |
| | | 17 | | } |