public ReadFromMySqlWithOpenAccess() { using (var context = new EntitiesModel()) { ProductsTable = context.Products.ToList(); MeasuresTable = context.Measures.ToList(); VendorsTable = context.Vendors.ToList(); } }