yj wrote:
Hi guys, I am facing some problems following the documentation to use EntityView.
I get the "namespace" not defined error, just which namespace shall i include in order to utilize this? I had generated the code using the SelfServicing Template.
please see:
Using the generated code -> Compiling
add:
using SD.LLBLGen.Pro.ORMSupportClasses;
or
Imports SD.LLBLGen.Pro.ORMSupportClasses
Besides, how can i actually loop through an Entity Collection in order to display all the items inside it without binding to a Datagrid?
// customers
foreach(CustomerEntity c in myCollection)
{
// do something with c
}