I have a class in my App_Code directory that I'm trying to initialize from the root directory of my solution but it is not showing up in IntelliSense. I have tried changing the class's build action from Content to Compile but then IntelliSense throws a whole bunch of errors about not finding my DBML class.
Note DBML file, Class and aspx file are all in the same namespace.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Linq;
^ Imports on class that I'm trying to initialize. (May be irrelevant)
Any pointers in the right direction would be appreciated.