var category = await _companyContext.PRODUCTCATEGORIES.FirstOrDefaultAsync(p => p.ID == categoryId && (bool)p.STATE);
            category.NAME = name;
            category.WORKPLACEID = workplaceid;
            _companyContext.Update(category);
My problem is in the line with NAME
 
    