Ejemplo n.º 1
0
 public SqlServerKeyBuilderAnnotations(
     [NotNull] InternalKeyBuilder internalBuilder,
     ConfigurationSource configurationSource)
     : base(new RelationalAnnotationsBuilder(internalBuilder, configurationSource))
 {
 }
Ejemplo n.º 2
0
 public static RelationalKeyBuilderAnnotations MyCat(
     [NotNull] this InternalKeyBuilder builder,
     ConfigurationSource configurationSource)
 => new RelationalKeyBuilderAnnotations(builder, configurationSource, MyCatFullAnnotationNames.Instance);
Ejemplo n.º 3
0
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public static SqlServerKeyBuilderAnnotations SqlServer(
     [NotNull] this InternalKeyBuilder builder,
     ConfigurationSource configurationSource)
 => new SqlServerKeyBuilderAnnotations(builder, configurationSource);
Ejemplo n.º 4
0
 public static RelationalKeyBuilderAnnotations Relational(
     [NotNull] this InternalKeyBuilder builder,
     ConfigurationSource configurationSource)
 => new RelationalKeyBuilderAnnotations(builder, configurationSource, null);
 public static RelationalKeyBuilderAnnotations SqlCe(
     [NotNull] this InternalKeyBuilder builder,
     ConfigurationSource configurationSource)
 => new RelationalKeyBuilderAnnotations(builder, configurationSource, SqlCeAnnotationNames.Prefix);
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public static MySqlKeyBuilderAnnotations MySql(
     [NotNull] this InternalKeyBuilder builder,
     ConfigurationSource configurationSource)
 => new MySqlKeyBuilderAnnotations(builder, configurationSource);
Ejemplo n.º 7
0
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public static FbKeyBuilderAnnotations Firebird(
     [NotNull] this InternalKeyBuilder builder,
     ConfigurationSource configurationSource)
 => new FbKeyBuilderAnnotations(builder, configurationSource);
 public static AS400KeyBuilderAnnotations AS400([NotNull] this InternalKeyBuilder builder, ConfigurationSource configurationSource)
 => new AS400KeyBuilderAnnotations(builder, configurationSource);
 public static OracleKeyBuilderAnnotations Oracle(
     [NotNull] this InternalKeyBuilder builder,
     ConfigurationSource configurationSource)
 => new OracleKeyBuilderAnnotations(builder, configurationSource);