public SqlServerPropertyBuilderAnnotations( [NotNull] InternalPropertyBuilder internalBuilder, ConfigurationSource configurationSource) : base(new RelationalAnnotationsBuilder(internalBuilder, configurationSource, SqlServerAnnotationNames.Prefix)) { }
public static RelationalPropertyBuilderAnnotations Sqlite( [NotNull] this InternalPropertyBuilder builder, ConfigurationSource configurationSource) => new RelationalPropertyBuilderAnnotations(builder, configurationSource, SqliteAnnotationNames.Prefix);
public static SqlServerPropertyBuilderAnnotations SqlServer( [NotNull] this InternalPropertyBuilder builder, ConfigurationSource configurationSource) => new SqlServerPropertyBuilderAnnotations(builder, configurationSource);
public static RelationalPropertyBuilderAnnotations Relational( [NotNull] this InternalPropertyBuilder builder, ConfigurationSource configurationSource) => new RelationalPropertyBuilderAnnotations(builder, configurationSource, null);