This application will allow users to: see all bands that have played at a venue, list bands that have played at a single venue, view a band and see all of their venues, and allow the user to add a venue to that band.
- Input: nothing/null
- Output : empty string
- Input: Radiohead, Radiohead
- Output : true
- Input: Radiohead, 0
- Output : Radiohead, non zero
- Input: Radiohead
- Output : Radiohead
- Input: Gorge, Radiohead
- Output: true
- Input: Nothing/null
- Output : empty string
- Input: Gorge, Gorge
- Output : true
- Input: Gorge
- Output : true
- Input: Radiohead, Gorge
- Output: true
- Input: Gorge
- Output: Radiohead, Fleetwood Mac
- Input: Gorge Amphitheater
- Output : Gorge Amphitheater
When a user deletes a venue, the Delete method will return an updated list without the deleted venue.
- Input: DELETE Gorge Amphitheater
- Output : Paramount, Key Arena
Contact: Caitlin Hines- caitlinhines@me.com
- SQLCMD:
- CREATE DATABASE band_tracker;
- GO
- USE band_tracker;
- GO
- CREATE TABLE bands (id INT IDENTITY(1,1), name VARCHAR(255));
- CREATE TABLE venues (id INT IDENTITY(1,1), name VARCHAR(255));
- GO
- _Clone github repository:https://github.com/Band-Tracker
- _run dnu restore in terminal.
- reset server with "gnx kestrel"
- Open webpage on localhost:5004
HTML, CSS, Nancy, Razor, C#, SQL
MIT
Copyright (c) 2017 Caitlin Hines