diff --git a/Dapper/FeatureSupport.cs b/Dapper/FeatureSupport.cs index 4d7d77e2e..3fad97b36 100644 --- a/Dapper/FeatureSupport.cs +++ b/Dapper/FeatureSupport.cs @@ -6,9 +6,9 @@ namespace Dapper /// /// Handles variances in features per DBMS /// - internal class FeatureSupport + public class FeatureSupport { - private static readonly FeatureSupport + public static readonly FeatureSupport Default = new FeatureSupport(false), Postgres = new FeatureSupport(true), ClickHouse = new FeatureSupport(true); @@ -33,6 +33,6 @@ private FeatureSupport(bool arrays) /// /// True if the db supports array columns e.g. Postgresql /// - public bool Arrays { get; } + public bool Arrays { get; set; } } }