Possible Duplicate:
Is a GUID unique 100% of the time?
I'm using GUID as my primary key columns for tables in a SQL CE 3.5 database that I'm performing CRUD operations on using Entity Framework.
When I create my id's I set them as
configuration.Id = Guid.NewGuid();
How unique is Guid
? It's a pretty big string, is there any possibility that Guid.NewGuid()
could return a value that it already used?