Hi,
I am new in LLBlgen. i need to update entity on some condition. i user following code but it is not updating entity
ClassificationTypesEntity classificationEntity = new ClassificationTypesEntity();
classificationEntity.Id = 8;
classificationEntity.IsNew = false;
classificationEntity.Classification = "test"
classificationEntity.Save();
in the database, fields are ID(smallint, null), Classification (char(50), null) [NO PK]
Please helpppppppppppp.