protected RelationalEntityTypeAnnotations(
     [NotNull] RelationalAnnotations annotations,
     [CanBeNull] RelationalFullAnnotationNames providerFullAnnotationNames)
 {
     Annotations = annotations;
     ProviderFullAnnotationNames = providerFullAnnotationNames;
 }
Exemple #2
0
 /// <summary>
 ///     Constructs an instance for annotations of the <see cref="IProperty" />
 ///     represented by the given annotation helper.
 /// </summary>
 /// <param name="annotations">
 ///     The <see cref="RelationalAnnotations" /> helper representing the <see cref="IProperty" /> to annotate.
 /// </param>
 protected RelationalPropertyAnnotations([NotNull] RelationalAnnotations annotations)
 => Annotations = annotations;
Exemple #3
0
 protected FirebirdSqlPropertyAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
Exemple #4
0
 protected RelationalModelAnnotations(
     [NotNull] RelationalAnnotations annotations) => Annotations = annotations;
 protected SqlServerPropertyAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations, SqlServerFullAnnotationNames.Instance)
 {
 }
 /// <summary>
 ///     Constructs an instance for annotations of the <see cref="IProperty" />
 ///     represented by the given annotation helper.
 /// </summary>
 /// <param name="annotations">
 ///     The <see cref="RelationalAnnotations" /> helper representing the <see cref="IProperty" /> to annotate.
 /// </param>
 protected SqlServerPropertyAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
Exemple #7
0
 /// <summary>
 ///     Constructs an instance for annotations of the <see cref="IProperty" />
 ///     represented by the given annotation helper.
 /// </summary>
 /// <param name="annotations">
 ///     The <see cref="RelationalAnnotations" /> helper representing the <see cref="IProperty" /> to annotate.
 /// </param>
 protected TaosPropertyAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
Exemple #8
0
 protected RelationalForeignKeyAnnotations([NotNull] RelationalAnnotations annotations,
                                           [CanBeNull] RelationalFullAnnotationNames providerFullAnnotationNames)
 {
     Annotations = annotations;
     ProviderFullAnnotationNames = providerFullAnnotationNames;
 }
Exemple #9
0
 /// <summary>
 ///     Constructs an instance for annotations of the <see cref="IEntityType" />
 ///     represented by the given annotation helper.
 /// </summary>
 /// <param name="annotations">
 ///     The <see cref="RelationalAnnotations" /> helper representing the <see cref="IEntityType" /> to annotate.
 /// </param>
 protected RelationalEntityTypeAnnotations(
     [NotNull] RelationalAnnotations annotations) => Annotations = annotations;
Exemple #10
0
 /// <summary>
 ///     Constructs an instance for annotations of the <see cref="IIndex" />
 ///     represented by the given annotation helper.
 /// </summary>
 /// <param name="annotations">
 ///     The <see cref="RelationalAnnotations" /> helper representing the <see cref="IIndex" /> to annotate.
 /// </param>
 protected RelationalIndexAnnotations([NotNull] RelationalAnnotations annotations)
 => Annotations = annotations;
Exemple #11
0
 protected FbKeyAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
Exemple #12
0
 protected FirebirdSqlIndexAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
 public NpgsqlModelAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
 protected NpgsqlIndexAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
 public MySqlEntityTypeAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
 public NpgsqlModelAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations, NpgsqlFullAnnotationNames.Instance)
 {
 }
Exemple #17
0
 protected NpgsqlIndexAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations, NpgsqlFullAnnotationNames.Instance)
 {
 }
 public SqlServerEntityTypeAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations, SqlServerFullAnnotationNames.Instance)
 {
 }
 public MyCatModelAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations, MyCatFullAnnotationNames.Instance)
 {
 }
Exemple #20
0
 protected OracleModelAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
 public OracleEntityTypeAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
 /// <summary>
 ///     Constructs an instance for annotations of the <see cref="IEntityType" />
 ///     represented by the given annotation helper.
 /// </summary>
 /// <param name="annotations">
 ///     The <see cref="RelationalAnnotations" /> helper representing the <see cref="IEntityType" /> to annotate.
 /// </param>
 public SqlServerEntityTypeAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
 /// <summary>
 ///     Constructs an instance for annotations of the <see cref="IForeignKey" />
 ///     represented by the given annotation helper.
 /// </summary>
 /// <param name="annotations">
 ///     The <see cref="RelationalAnnotations" /> helper representing the <see cref="IForeignKey" /> to annotate.
 /// </param>
 protected RelationalForeignKeyAnnotations([NotNull] RelationalAnnotations annotations)
 => Annotations = annotations;
 protected MySqlModelAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
Exemple #25
0
 protected MyCatIndexAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations, MyCatFullAnnotationNames.Instance)
 {
 }
 protected SqlServerModelAnnotations([NotNull] RelationalAnnotations annotations)
     : base(annotations)
 {
 }
Exemple #27
0
 protected RelationalKeyAnnotations([NotNull] RelationalAnnotations annotations)
 {
     Annotations = annotations;
 }