Search Results for

    Show / Hide Table of Contents

    Class PostgresCollation

    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
    PostgresCollation
    Namespace: Npgsql.EntityFrameworkCore.PostgreSQL.Metadata
    Assembly: Npgsql.EntityFrameworkCore.PostgreSQL.dll
    Syntax
    public class PostgresCollation

    Properties

    | Improve this Doc View Source

    Annotatable

    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 Annotatable Annotatable { get; }
    Property Value
    Type Description
    Annotatable
    | Improve this Doc View Source

    IsDeterministic

    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? IsDeterministic { get; set; }
    Property Value
    Type Description
    bool?
    | Improve this Doc View Source

    LcCollate

    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 LcCollate { get; set; }
    Property Value
    Type Description
    string
    | Improve this Doc View Source

    LcCtype

    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 LcCtype { get; set; }
    Property Value
    Type Description
    string
    | Improve this Doc View Source

    Name

    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 Name { get; }
    Property Value
    Type Description
    string
    | Improve this Doc View Source

    Provider

    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? Provider { get; set; }
    Property Value
    Type Description
    string?
    | Improve this Doc View Source

    Schema

    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? Schema { get; }
    Property Value
    Type Description
    string?

    Methods

    | Improve this Doc View Source

    FindCollation(IReadOnlyAnnotatable, string?, 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 PostgresCollation? FindCollation(IReadOnlyAnnotatable annotatable, string? schema, string name)
    Parameters
    Type Name Description
    IReadOnlyAnnotatable annotatable
    string? schema
    string name
    Returns
    Type Description
    PostgresCollation
    | Improve this Doc View Source

    GetCollations(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 IEnumerable<PostgresCollation> GetCollations(IReadOnlyAnnotatable annotatable)
    Parameters
    Type Name Description
    IReadOnlyAnnotatable annotatable
    Returns
    Type Description
    IEnumerable<><PostgresCollation>
    | Improve this Doc View Source

    GetOrAddCollation(IMutableAnnotatable, string?, string, string, string, string?, bool?)

    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 PostgresCollation GetOrAddCollation(IMutableAnnotatable annotatable, string? schema, string name, string lcCollate, string lcCtype, string? provider = null, bool? deterministic = null)
    Parameters
    Type Name Description
    IMutableAnnotatable annotatable
    string? schema
    string name
    string lcCollate
    string lcCtype
    string? provider
    bool? deterministic
    Returns
    Type Description
    PostgresCollation
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team