Hi there,
heres an example :
ContactEntity contact = new ContactEntity();
contact.Name = "Jon"; //works
contact.Fields[1] = "Jon"; //Does not work - parsing error : Cannot convert type 'string' to 'SD.LLBLGen.Pro.ORMSupportClasses.IEntityField2'
Thanks in advance
Jon