3

Looking through the documentation I don't see a GUID datatype. Is there a function or something to generate a random GUID? What is it?

O.O
  • 11,077
  • 18
  • 94
  • 182
  • 1
    Are you sure there isn't a way to get the C# tag on this question? I think if you gave some C# code samples you could really bring in some up votes :) – psr Oct 05 '12 at 23:51

1 Answers1

4
$System.Util.CreateGUID()

This doesn't return a data-type however, it's just a string. You can write your own data-type class if you need special validation or conversion between logical/display/ODBC.

psr
  • 2,870
  • 18
  • 22