DLL Registration
I have been able to load my dll and it appears available for queries, but all queries fail.
But when I try a query, I get an error:
When I hover over Addresses is says that name addresses does not exist in the current context. Seems simple, but I am obviously missing something.
Comments
It looks like HTEContext is a nested class. This will make it tricky for LINQPad to subclass. Are you able to define it as a normal class?
Turns out that I was refactoring the classes anyway, so I went ahead and removed the subclassing. That did it, thank you.