I am working on an n-tier web project, The data access layer is in a project, and the website is in another separate project with reference to the data access layer project.
Now I want to create a wcf service to be able to transfer data from the data access layer to the website.
I added the wcf service in the data access layer.
And addedd a web service reference to the wcf service in the website.
Note: I need to access these wcf services using ajax/jquery from my website.
Now how my jquery code will access this service to get and post data from/to this service? should I put the .svc file in the website and use ajax script manager?
Are there any tutorials tells how to use wcf in n-tier ajax websites?