Candor.Data.DataRecordExtensions.GetGuid C# (CSharp) Method

GetGuid() public static method

Gets a value from a database field value or output parameter.
public static GetGuid ( object fieldValue ) : System.Guid
fieldValue object The value to convert.
return System.Guid
        public static Guid GetGuid(object fieldValue)
        {
            return GetGuid(fieldValue, Guid.Empty);
        }

Same methods

DataRecordExtensions::GetGuid ( object fieldValue, System.Guid defaultValue ) : System.Guid
DataRecordExtensions::GetGuid ( this record, string name ) : System.Guid
DataRecordExtensions::GetGuid ( this record, string name, System.Guid defaultValue ) : System.Guid
DataRecordExtensions::GetGuid ( this record, string name, System.Guid defaultValue, bool ignoreErrors ) : System.Guid