/// <summary> /// Creates the table using the class definition /// </summary> public void CreateTable() { // Check out the StarShip class to see the various attributes // and how they can be used to set up your table. dbManager.CreateTable <StarShip>(); Results("Create Table Success!"); }
/// <summary> /// Creates the table using the class definition /// </summary> private void CreateTable() { // Check out the StarShip class to see the various attributes // and how they can be used to set up your table. dbManager.CreateTable<StarShip>(); }