smart-tag use
I'm brand new to LINQPad. I have been working through the examples in a book entitled "Building Interactive Queries with LINQPad". One of the examples has this code:
void Main()
{
DbContext context;
}
// Define ...
In the example a smart-tag has popped up with 2 options:
using System.Data.Entity
System.Data.Entity.DbContext
When I enter the same code into LINQPad I get a popup with:
using System.Runtime.Remoting.Contexts
System.Runtime.Remoting.Contexts.Context
I have added all 4 options to the Additional Namespace Imports but the red squiggle does not go away. What am I missing?
Thanks,
rmckay
void Main()
{
DbContext context;
}
// Define ...
In the example a smart-tag has popped up with 2 options:
using System.Data.Entity
System.Data.Entity.DbContext
When I enter the same code into LINQPad I get a popup with:
using System.Runtime.Remoting.Contexts
System.Runtime.Remoting.Contexts.Context
I have added all 4 options to the Additional Namespace Imports but the red squiggle does not go away. What am I missing?
Thanks,
rmckay
Comments