Losing scope for DataContex using LINQToSQL intermediately

Posted by greektreat on Stack Overflow See other posts from Stack Overflow or by greektreat
Published on 2010-05-01T17:24:10Z Indexed on 2010/05/01 17:27 UTC
Read the original article Hit count: 217

Filed under:

I am having a weird Situation with my DataConext. All My code is in C# I have a DLL project for my data access layer and business Layer which and Winforms project for my UI layer.

My Data access Layer's Namespace is xxx.Data this is where have my xxx.dbml I also have xxx.Data.BusinessObjects name space of course for my business object in that project

In my UI Layer I have these namespaces xxxApp(for Forms), xxxApp.Controls (For Controls)

I have lost scope of the DataContext, it was accessible now when I do a Rebuild Solution I sometimes get compile errors saying for example:

Error 34 'xxx.Data.xxxDataContext' does not contain a definition for 'SubmitChanges' and no extension method 'SubmitChanges' accepting a first argument of type 'xxx.Data.xxxDataContext' could be found (are you missing a using directive or an assembly reference?)

Also intelisense doesn't recognize the methods and table classes from my xxxDataContext anymore

I can access all object fine when I am in the DLL project but now in the Winforms project

this is very strange. If anyone can help me out I would be extremely grateful!

© Stack Overflow or respective owner

Related posts about linq-to-sql