错误CS1061表示在使用ASP .NET Core时,您正在尝试调用一个ICollection对象上不存在的方法或属性。下面是解决此错误的一些常见方法和代码示例:
List myCollection = new List();
myCollection.Add(1); // 正确
ICollection myCollection = new HashSet();
myCollection.Add(1); // 错误:HashSet没有Add方法
ICollection myCollection = new List();
List myList = (List)myCollection; // 类型转换
ICollection myCollection = new List();
List myList = myCollection as List; // 使用as关键字进行转换
if (myList != null)
{
// 在这里使用myList
}
ICollection myCollection = new List();
List sortedList = myCollection.ToList(); // 将ICollection转换为List以进行排序操作
sortedList.Sort(); // 进行排序
请根据您的具体代码和需求选择适合的解决方案。