using System; using System.Collections.Generic; using System.Text; namespace Pole.EventStorage.PostgreSql { public class EFOptions { public const string DefaultSchema = "pole"; public const string DefaultTable = "Events"; /// /// Gets or sets the schema to use when creating database objects. /// Default is . /// public string Schema { get; set; } = DefaultSchema; public string TableName { get; set; } = DefaultTable; internal Type DbContextType { get; set; } } }