So I have a UserProfile model class as part of SimpleMembership. In it I need to store a legacy identifier that exists in another DB of type char(36)
. I'd love to change this to something more sensible like a uniqueIdentifier but that's out of scope for today's activities.
My current annotation creates a column nvarchar(36)
[StringLength(36)]
public string UserIdentifier{ get; set; }
I'd like a column of char(36)
instead. Is this possible?