Hi,
I've tried searching on the forums, but haven't come across this problem before.
I'm using the LLBLGenProDataSource as the databinding source for some gridviews. I can configure the views to use the datasource and can even configure the datasource in Design mode to reflect the correct EntityCollection.
All the examples I've seen use the LLBLGenProDataSource2 control, however I like the self-servicing classes rather than the adapter model.
My issue arises when I try to get intellisense within either the Source of the aspx page or the code-behind C# file. I've included a reference to the ORMSupportClasses library, it's included in the Bin folder of the website and I've got the "using" directive included as well.
If I create a local instance of the LLBLGenProDataSource control in my code-behind, I get full intellisense, however if I try and reference the instance on my aspx page (e.g. this.LLBLGenProDataSource<Objects>.Refetch) I get no intellisense prompt after typing the "." after the instance name.
Also, my Resharper flags the controls as not being able to be resolved, however the solution still builds fine. I also get no intellisense prompts if trying to edit the LLBLGenProDataSource properties in the ASPX page in Source mode.
If it helps, I'm using master pages, however even creating an aspx page without master pages has the same issue.
Can anyone give me some guidance as to where I might be going wrong?