I am creating a three tier website project. I am using Linq to sql class
in my data-access-layer,all my sp's and tables are shown in DataAccessLayerCodeFile.designer.cs
file,but when i make a instance of it in presentation layer,it successfully create the instance like this:
DataAccessLayer.DataAccessLayerCodeFileDataContext dbInstance = new DataAccessLayer.DataAccessLayerCodeFileDataContext();
But when i want to used dbInstance, it is not showing in intellisense and not showing classes and functions (sp's).i-e i want to call sp's from dbInstance., but i can't access it?Kindly guide me what i am missing?