xxxxxxxxxx
Both [Computed] and Write(false) will ignore the property while INSERT as well
as UPDATE operations. So, both of them are same. You can use any one of it.
[Write(false)] - this property is (not) writeable
[Computed] - this property is computed and should not be part of updates
[Computed]
public string ComputedCol { get; set; }
[Write(false)]
public string NonWriteCol { get; set; }