Beispiel #1
0
 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);
Beispiel #3
0
 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);