TortugaResearch / Tortuga.Chain

A fluent ORM for .NET
Other
335 stars 22 forks source link

Get Version Info on Server for SQL Server and MySQL #283

Open Grauenwolf opened 5 years ago

Grauenwolf commented 5 years ago

Implement these methods across all databases

    /// <summary>
    /// Gets the server version number.
    /// </summary>
    public virtual Version ServerVersion => null;

    /// <summary>
    /// Gets the server version name.
    /// </summary>
    public virtual string ServerVersionName => null;
Grauenwolf commented 4 years ago

Does not apply to file-based database such as Access and SQLite.