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);