
Hello,
I have a class which inherits from ObjectContext which I am accessing from a different class. Both classes are wired up to shared IProjectAssembly and ISyntaxLanguage objects. When accessing the ObjectContext derived class from the other (using the intellisense), I can see all the methods/properties of the derived class, but none from the base class. If I add a "using System.Data.Objects;" statement, then all the methods/properties show up.
Shouldn't the resolver pick up the base class methods/properties too?
I'm using IProjectAssembly.AssemblyReferences.Add("...") to add the required .NET assemblies, and using IProjectAssembly.SourceFiles.QueueCode(...) to add the class which derives from ObjectContext.
I have a class which inherits from ObjectContext which I am accessing from a different class. Both classes are wired up to shared IProjectAssembly and ISyntaxLanguage objects. When accessing the ObjectContext derived class from the other (using the intellisense), I can see all the methods/properties of the derived class, but none from the base class. If I add a "using System.Data.Objects;" statement, then all the methods/properties show up.
Shouldn't the resolver pick up the base class methods/properties too?
I'm using IProjectAssembly.AssemblyReferences.Add("...") to add the required .NET assemblies, and using IProjectAssembly.SourceFiles.QueueCode(...) to add the class which derives from ObjectContext.