ELMAH doesn't support custom properties like other frameworks (log4net, Serilog etc.). If you want to store the content of the list, you can use something like json.net to serialize the list to a JSON string before sending it to ELMAH:
Elmah.ErrorSignal.FromCurrentContext().Raise(new Exception("Error Model " + JsonConvert.SerializeObject(CustomModel);));
ELMAH doesn't support custom properties like other frameworks (log4net, Serilog etc.). If you want to store the content of the list, you can use something like json.net to serialize the list to a JSON string before sending it to ELMAH: