R
Random
How can I convert a system.string value to a system.guid? I know the string
is a valid guid. All I'm trying to do is to pass the value into a stored
procedure that accepts a guid. The wrapper function I have for this would
need to convert the string parameter it receives and convert it to a guid
for executing the stored procedure. I could probably modify the sproc to
accept the string and do the convert itself, but I'd rather extract it out
to my wrapper function.
is a valid guid. All I'm trying to do is to pass the value into a stored
procedure that accepts a guid. The wrapper function I have for this would
need to convert the string parameter it receives and convert it to a guid
for executing the stored procedure. I could probably modify the sproc to
accept the string and do the convert itself, but I'd rather extract it out
to my wrapper function.