I tried to use RadzenCheckBox witn int value but it didn't make value checked (checked=1, unchecked=0)
Should I add something to make it working?
RadzenCheckBox supports boolean and nullable boolean only. You can easily convert that to a number:
int value = checked ? 1 : 0;