Media Picker
Value Type Saved: List<Guid>
The media picker allows you to pick you media onto a page, has settings for amount allowed to be picked and also the types of media allowed to be picked

Example of getting value on page
(Content!.GetValue<List<Guid>>("PropertyAliasHere"))
Once you have the media ids, you can then use the QueryMediaCommand
var mediaItems = await Mediator.Send(new QueryMediaCommand
{
Ids = mediaIds
});
Last updated