You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2023-11-22T08:19:44.4700133-08:00 [DEBUG] dbContextTypeName parameter is null
2023-11-22T08:19:44.8612102-08:00 [INFO] Looking for DinkToPdf
2023-11-22T08:19:45.1525540-08:00 [INFO] Not found - DinkToPdf
I've tried running from the command line so I can specify dbContextTypeName (which changes the debug log to show it but doesnt change the next issue)
DinkToPdf isn't even the first referenced dependency.
Ideas to debug are appreciated!
The text was updated successfully, but these errors were encountered:
Rather than reading from your build output directory, do a 'Publish' and read from that directory. It's likely to have more of the dependencies in it. The search pattern during parsing is
The current directory for the parser (installation directory of the extension)
Directory the assembly to be parsed is in
The GAC
Then it gives up. Best if all the dependencies (and their dependencies) are in the input assembly's directory except, of course, for system stuff that's in the GAC ... no need to copy those.
The parser has to create an instance of your DbContext so it can walk through its model and pull the relevant details.
This is the most troublesome part of the parser. I'd love it if someone who's done this kind of thing before would offer a pull request on it, but that hasn't happened yet ☹️ .
2023-11-22T08:19:44.4700133-08:00 [DEBUG] dbContextTypeName parameter is null
2023-11-22T08:19:44.8612102-08:00 [INFO] Looking for DinkToPdf
2023-11-22T08:19:45.1525540-08:00 [INFO] Not found - DinkToPdf
I've tried running from the command line so I can specify dbContextTypeName (which changes the debug log to show it but doesnt change the next issue)
DinkToPdf isn't even the first referenced dependency.
Ideas to debug are appreciated!
The text was updated successfully, but these errors were encountered: