-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#Generics」を検索してくださいEntityCollection<Employee>

コレクションの操作方法については、「linq」を検索してください。

于 2013-01-18T08:27:31.560 に答える