Can someone please provide code to fix this error?
\"Cannot apply indexing with [] to an expression of type \'ICollection\'
Essentially, I\'m trying to
Use IList
IList
public class A { public int Name { get; set; } public virtual IList Bs { get; set; } }