|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ASP.net 2.0 Users (aspnet_Users table) create constraint problemI am using ASP.NET 2.0 Membership system, which is driving me nuts. I have my users, which I create correctly. Then I have a table "Models" which contains models, created by different users. So I obviously need to create a relationship between the users and the models. I wanted at first to create a relationship like I'm used to do it, that is to add an int field to my Model table that would be a reference on the primary key of my Primary Table. However, as the primary key on the aspnet_Users table is a uniqueidentifier, I decided to add a field model_username instead. Then, I tried to create a relationship between the aspnet_Users.UserName row and Model.model_username, but sql server won't let me create it, I don't know why. What is supposed to be the correct way to implement a constraint with asp.net 2.0 users? I want to disallow the deletion of a user if he has created a model. Thank you, ibiza On 9 Mar 2006 11:41:46 -0800, ibiza wrote:
> However, as the primary key on the Why? I assume you mean you added a field model_username to your new table> aspnet_Users table is a uniqueidentifier, I decided to add a field > model_username instead. (not to the asp.net users table), right? If so, did you make sure it's the same type and size as the aspnet username field (ie nvarchar(256))? Also, primary keys must be unique, so if you can have mulitple models per user, you need to have some kind of sequence number or other value in addition to username to create your primary key. > Then, I tried to create a relationship between What is the error you are getting? It seems to work for me.> the aspnet_Users.UserName row and Model.model_username, but sql server > won't let me create it, I don't know why. > What is supposed to be the correct way to implement a constraint with I'd create a uniqueidentifier in your table, and then create a foreign key> asp.net 2.0 users? I want to disallow the deletion of a user if he has > created a model. constraint on that. This is guaranteed unique, even if another user is created with the same name.
Can't modify instance of a class from within the class!
WebBrowser Control Printing Garbage collection, Unmanaged code and SafeArrays Problem sending Report as EMail - wrong attach. name "untitled.txt" creating independant application vb 2005 express edition Regular Expression Question Fastest way to load jpg images ? Single event handler for menu How to.... Question..... Access digital camera |
|||||||||||||||||||||||