2011-11-15 2 views

답변

1

합니다 (Getting Started PDF Documentation에서)이 시도 : 위대한 답변

IDataReader result = Animal.Find(criteria); 
AnimalCollection coll = new AnimalCollection(); 
coll.Load(result); 
result.Close(); 

// do something with coll 
foreach (Animal anm in coll) 
{ 
    // do something with animal object 
} 
+0

감사합니다. 지금은 좋은 확장 방법으로 이것을 얻는 중입니다 : http://stackoverflow.com/questions/8154395/ –