I am using an oracle instance in c# when i am trying to run below code i am getting value does not fall within the expected range exception, adding update statement below for refrerence
db.Execute(@"UPDATE DocumentLibrary
SET ContentHierarchyId = :ContentHierarchyIdString,
IsDownloadable = :IsDownloadable,
IsPrintable = :IsPrintable,
DocumentType = :DocType
WHERE ObjectId = :ElementId",
new
{
_document.ContentHierarchyIdString,
_document.IsDownloadable,
_document.IsPrintable,
DocType = _document.DocumentType,
ElementId = _document.ObjectId.ToString()
}, transaction);