コード例 #1
0
    /// <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!");
    }
コード例 #2
0
	/// <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>();
	}