using LinqToDB; using LinqToDB.Data; using Azaion.Flights.Database.Entities; namespace Azaion.Flights.Database; public class AppDataConnection(DataOptions options) : DataConnection(options) { public ITable Aircrafts => this.GetTable(); public ITable Flights => this.GetTable(); public ITable Waypoints => this.GetTable(); public ITable Orthophotos => this.GetTable(); public ITable GpsCorrections => this.GetTable(); public ITable MapObjects => this.GetTable(); public ITable Media => this.GetTable(); public ITable Annotations => this.GetTable(); public ITable Detections => this.GetTable(); }