Oracle GUID appearance is different in .NET. But in action this conversation implemented automatically. If you want to see oracle GUID (as you can see in oracle) regularly you should use a function like this.
public string ByteToRawString (byte [] byteArray) { string str="" ; for (int i = 0; i < byteArray.Length ; i++) { str+=String.Format("{0:x2}", byteArray[i]); } return str.ToUpper(); } Related Terminology : GUID, Byte Array, Oracle, .NET
|