using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SQLite; namespace Extensometer.Data { public class ObjectDBTable:SQLiteConnection { public ObjectDBTable(string OjDbPath):base(OjDbPath) { CreateTable(); } public TableQuery ObjectDatas { get { return this.Table(); } } } }