* VALUES
*/
if(propertyValue!=null)
{
try {
ModelType modelType = resolveModelType(property.getJavaTypeName());
if ((modelType == ModelType.LIST) && (property.getListType() == PropertyBinding.class)) {
operation.get(splitDetypedName).set(modelType, property.getEntityAdapterForList().fromEntityPropertyList((List) propertyValue));
} else if (modelType == ModelType.LIST) {
operation.get(splitDetypedName).set(modelType, property.getEntityAdapterForList().fromEntityList((List) propertyValue));
} else {