PostLoad() is the method that is used to read records from the database and you can perform any custom logic by overriding this method on any table.
public void postLoad()
{
super();
if (this.Name == 'MEL')
this.Value = 5;
}