Azavea.Open.DAO.Memory.MemoryDaLayer.CreateStoreRoom C# (CSharp) Method

CreateStoreRoom() public method

Creates the store room specified in the connection descriptor. NOTE: It is not necessary to call this method, as this data store will create the store room on the fly if it does not exist.
public CreateStoreRoom ( ClassMapping mapping ) : void
mapping ClassMapping ClassMapping for the data that will be stored in this room.
return void
        public void CreateStoreRoom(ClassMapping mapping)
        {
            // This will create it if it doesn't exist.
            GetTable(mapping);
        }