I have a view that lives in /Views/Projects and I am making a call to render a partial view:
@Html.Partial("_NotesPartial")
The view that I want to render actually exists in the /Views/Notes folder but I can't figure out how to tell MVC to search that folder for this specific call. Is there an overload I can call to have MVC look for this view in this folder instead of Projects and Shared?