Orm.WriteSafely C# (CSharp) Method

WriteSafely() public method

public WriteSafely ( string data ) : bool
data string
return bool
    public bool WriteSafely(string data)
    {
        throw new NotImplementedException($"Please implement the Orm.WriteSafely() method");
    }
}

Usage Example

Example #1
0
    public void CommitSafely_bad_commit()
    {
        var db  = new Database();
        var orm = new Orm(db);

        Assert.False(orm.WriteSafely("bad commit"));
    }
All Usage Examples Of Orm::WriteSafely