James White

Results 33 comments of James White

Always trying different arrangements of data access, just realized that by surfacing the context in various feature projects I’ve locked them out of .NET Standard 2.0 and by extension everything...

I’ve made all these mistakes, happy to be returning to just using the ORM but I’m struggling with real world applications. What arrangements have you found that eliminate the intermediate...

Same here. Searched all of github for someone adding an application version to telemetry and there's not a single instance of someone using the new snippet and adding any custom...

Aha! Here is one that works.. I left in the check for an empty queue as it seems like a safety check to make sure a duplicate snippet doesn't cause...

Same, I have a sneaking suspicion it's in the css not the properties.

Scrambling to fix this in a production app so the exact string I'm passing isn't available, but it appears that when passing /r/n into MarkdownTransformer.Transform with AutoNewlines set to true...

For reference, if the user modifies state (not just the pane size, anything), the panes animate to the initial value.

Here is an example project with two RCL's, one statically linked to the web project, one loaded dynamically. By default new RCL's use MVC Areas but I've tried it without...

Thanks so much! I was able to load and render Razor Pages if I add a CompiledRazorAssemblyPart after the PluginAssemblyPart. That seems to match how the statically linked RCL works....

Found it! Needed a CustomViewCompiler that could be reset (Hot Reload does this with the default one). I added a CompiledRazorAssemblyPart along with the PluginAssemblyPart and reset that cache and...