Hi,
In adapter scenario I want to use the IEntityValidator class, so I created my own validator, that implements this interface.
The UI get the collection of myObj:
dim MyObjValidator as IEntityValidator=New MyObjValidator
dim MyObjCol as New EntityCollection(new MyObjEntityFactory, MyObjValidator)
This code doesn't work, because the constructor of the EntityCollection requires IValidator as parameter, not IEntityValidator.
In this scenario, how to create collection with custom entity validator?
Thanks
Gabor