Narrowing scope

Argument matching parameter 'SomethingsModel'
narrows from
'System.Collections.Generic.ICollection(Of Projectname.Model.Something)'
to
'System.Collections.Generic.List(Of Projectname.Model.Something)' 
One way to fix this issue could be to simply convert the ICollection to a List<T> using
.ToList()