My Event class has the following properties
public string Status {get; set; }
This property may contain the value "Done" or "Not performed"
I need to create a filter in the view that allows me to show only the events that have the status "Done".
How can I do it?