Clear to int value (DbNull.Value)

124 Views Asked by At

I want to change column value to DbNull.Value,

I tried; stokIst.IstasyonId = DBNull.Value;

stokIst not a primary key but its int column. I want to clear the value in the column as the target. When I save it at first, this value seems clear. an assignment is made later and may need to be cleared again later.

1

There are 1 best solutions below

0
On BEST ANSWER

I fixed my problem; https://stackoverflow.com/a/26592684/13580572

//cast
private int? IstasyonId;
public object ID {
    get
    {
        return IstasyonId.HasValue ? IstasyonId.Value as object : DBNull.Value;    
    }
}
//code
stokIst.IstasyonId =IstasyonId;