Microsoft.Data.SqlClient.SqlException
and System.InvalidOperationException
being thrown in my debug output, but I can't find out why my module's recipe is failing (or if it even is the recipe). It's also weird that when enabling the feature, it is enabled but doesn't even report that there were exceptions. I couldn't find a logging feature either.
var jobs = await Orchard.GetRecentContentItemsByContentTypeAsync("JobPost", 9999);
to get all content items of the type "JobPost" on my Razor page (decoupled site). I just recently deleted several test content items that I no longer needed, but they keep showing up when I generate this list of content items. And new content items that I have just created are not showing up. Is there something that needs to get refreshed somewhere in order to get an up-to-date list of these content items?
Module B.FancyFeature
. If I don't add Module B as a package reference in my startup project, Module B.FancyFeature
doesn't show up in the features list, even if it is listed as a package reference in the Module A .csproj, and Module A has the specific feature I'm using (Module B.FancyFeature
) listed as a dependency. Make sense?