Assaad Ghabi
Assaad Ghabi

Reputation: 76

How to display ListPart items of Orchard Core CMS in razor view?

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:

Projects

project:

project

Upvotes: 0

Views: 1061

Answers (1)

Ahmed Tabbaa
Ahmed Tabbaa

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

Related Questions