-1

我正在尝试编写一个代码,其中 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);
4

1 回答 1

1

这个问题有点难以理解,但我想你正在寻找这样的东西:

private void sampleMethod(EntityCollection<Employee> employees)
{
   foreach(var employee in employees)
   {
      // do something with every employee.EducationalBackground
   }
}

搜索“c# 泛型”以获取有关EntityCollection<Employee>.

搜索“linq”以获取有关如何使用集合的信息。

于 2013-01-18T08:27:31.560 回答