Reputation: 76
I have created a content type projects, which is a list of project in Orchard CMS. When I try to display this list in razor view, the ListPart has no items.
Projects:
project:
Upvotes: 0
Views: 1061
Reputation: 31
you can get ListPart items using this method @Orchard.QueryListItemsAsync(Model.ContentItemId)
of course, you have to do this injection first @inject OrchardCore.IOrchardHelper Orchard
Upvotes: 3