0
votes
5answers
32 views
Is a guid as identity field better in domain-driven design?
Is it easier to implement domain-driven design when using guids as identity fields instead of auto incrementing integers? With guids you don't have to jump to the database to get t …
1
vote
1answer
30 views
Is there a way to distinguish a GUID from just a random number?
Being able to distinguish a GUID from random data can be useful when debugging obscure code defects.
On Windows each GUID generated is of version 4 therefore it has '4' as the fir …
0
votes
2answers
20 views
Problem getting GUID string value in Linq-To-Entity query
Hi,
I am trying to write a GUID value to a string in a linq select. The code can be seen below (where c.ID is GUID), but I get the following error:
Unable to cast the type 'Syste …
0
votes
3answers
38 views
Should a Sequential Guid primary key column be a clustered index?
The goal of using a sequential guid is so you can use clustered indexes without the high levels of fragmentation that would normally exist in a clustered index if it was a regular …
1
vote
2answers
42 views
Understanding GUIDS, updates, and patches with Windows-Installer
Hi, I'm learning about Windows-Installer and Wix, and have a number of questions related to how it works:
If a component GUID changes, but the same files are in the component, w …
1
vote
3answers
101 views
Sequential Guid Generator C#
Is there any way to get the functionality of the Sql Server 2005+ Sequential Guid generator without inserting records to read it back on round trip or invoking a native win dll cal …
0
votes
0answers
31 views
Not able to retrieve GUID as GUID, but it works when i convert it in the db as a string
Pre:
My pk = system.guid
It is the only value that isn't retrieved from the table
value: null when retrieved, all other elements for this object, from the table are correct.
Whe …
7
votes
12answers
823 views
simple proof that GUID is not unique
I'd like to prove that a GUID is not unique in a simple test program.
I expected this to run for hours but it's not working. How can I make it work?
BigInteger begin = new BigInte …
1
vote
4answers
72 views
Using uniqueidentifier as Primary Key and inserting it from the client application using parameterized queries.
I have created a database where I use uniqueidentifier as the primary key. I'm trying to run a parametrized query that in the end looks like this. (insert into someTable (uniqueID …
0
votes
6answers
156 views
How to convert a GUID to a string in C#?
I'm new to C#.
I know in vb.net, i can do this:
Dim guid as string = System.Guid.NewGuid.ToString
In C#, I'm trying to do
String guid = System.Guid.NewGuid().ToString;
but …
1
vote
2answers
57 views
how to create GUID?
how to create GUID in asp.net 3.5?
4
votes
7answers
171 views
GUID.TryParse() ?
Obviously there is no public GUID.TryParse() in .NET CLR 2.0.
So, I was looking into regular expressions [aka googling around to find one] and each time I found one there was a he …
2
votes
2answers
39 views
.NET: Blog post on GUID?
I once read a blog post by a dev at Microsoft about the anatomy--what individual pieces of data are combined--of a System.Guid. Does anyone have the link? I'm not finding it by goo …
3
votes
2answers
66 views
Why does aspnet_users use guid for id rather than incrementing int? bonus points for help on extending user fields
Why does aspnet_users use guid for id rather than incrementing int?
Also is there any reason no to use this in other tables as the primary key? It feels a bit odd as I know most a …
0
votes
1answer
17 views
LinqDataSource - how do I select rows based on the current UserId?
Hello,
I have a Grid View control that displays data based on what is returned by the LinqDataSource. The LinqDataSource selects data depending on the date chosen in a date contr …
