我正在尝试编写一个代码,其中EntityCollection是方法的参数 但我不知道什么是正确的编码
有人可以帮我解决这个问题吗?
这是示例代码
//by the way, this is a wrong coding, I am just showing you, what is the thing that I want to do...
private void sampleMethod(EntityCollection a)
{
if (a.ToList().Count == 0)
{
//body
}
}
当我打电话时,这就是它的样子
sampleMethod(employee.EducationalBackground);
答案 0 :(得分:1)
这个问题有点难以理解,但我想你正在寻找这样的东西:
private void sampleMethod(EntityCollection<Employee> employees)
{
foreach(var employee in employees)
{
// do something with every employee.EducationalBackground
}
}
搜索“c#Generics”以获取有关EntityCollection<Employee>
。
搜索“linq”以获取有关如何使用集合的信息。