I was toying around with a rogue application and realized that if I deploy my program on another computer, it would crash because my connection string is an absolute path.
Data Source=(LocalDB)\v11.0;AttachDbFilename="C:\Users\AD\Documents\Visual Studio 2013\Projects\botSuite test\botSuite test\Users.mdf";Integrated Security=True;Connect Timeout=30
I thought about looking in the directory, setting a string to its filepath and using that to deal with the issue but it seems like there should be an easier way.