Search Results for

    Show / Hide Table of Contents

    Class IdentitySequenceOptionsData

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Inheritance
    object
    IdentitySequenceOptionsData
    Namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal
    Assembly: Npgsql.EntityFrameworkCore.PostgreSQL.dll
    Syntax
    public class IdentitySequenceOptionsData : IEquatable<IdentitySequenceOptionsData>

    Fields

    | Improve this Doc View Source

    Empty

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public static readonly IdentitySequenceOptionsData Empty
    Field Value
    Type Description
    IdentitySequenceOptionsData

    Properties

    | Improve this Doc View Source

    IncrementBy

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual long IncrementBy { get; set; }
    Property Value
    Type Description
    long
    | Improve this Doc View Source

    IsCyclic

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual bool IsCyclic { get; set; }
    Property Value
    Type Description
    bool
    | Improve this Doc View Source

    MaxValue

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual long? MaxValue { get; set; }
    Property Value
    Type Description
    long?
    | Improve this Doc View Source

    MinValue

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual long? MinValue { get; set; }
    Property Value
    Type Description
    long?
    | Improve this Doc View Source

    NumbersToCache

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual long NumbersToCache { get; set; }
    Property Value
    Type Description
    long
    | Improve this Doc View Source

    StartValue

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual long? StartValue { get; set; }
    Property Value
    Type Description
    long?

    Methods

    | Improve this Doc View Source

    Deserialize(string?)

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public static IdentitySequenceOptionsData Deserialize(string? value)
    Parameters
    Type Name Description
    string? value
    Returns
    Type Description
    IdentitySequenceOptionsData
    | Improve this Doc View Source

    Equals(IdentitySequenceOptionsData?)

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual bool Equals(IdentitySequenceOptionsData? other)
    Parameters
    Type Name Description
    IdentitySequenceOptionsData other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Equals(object?)

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public override bool Equals(object? obj)
    Parameters
    Type Name Description
    object? obj
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Get(IReadOnlyAnnotatable)

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public static IdentitySequenceOptionsData Get(IReadOnlyAnnotatable annotatable)
    Parameters
    Type Name Description
    IReadOnlyAnnotatable annotatable
    Returns
    Type Description
    IdentitySequenceOptionsData
    | Improve this Doc View Source

    GetHashCode()

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    | Improve this Doc View Source

    Serialize()

    This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

    Declaration
    public virtual string Serialize()
    Returns
    Type Description
    string
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team