I am using Glass library as ORM for Sitecore. I have a field Images which contains the list of images. Since I want to access this from my .NET code, I have written a partial class which has the field images like:
[SitecoreField]
public virtual IEnumerable<Glass.Sitecore.Mapper.FieldTypes.Image> Images { get; set;}
But while loading this I am getting error.
The method or operation is not implemented.
Where as I am able to access the single image through Glass, without writing any additional code.
Can anyone please suggest something to fix this?