Hi,
I have the following design table,
dbo.asp.net_users
- ApplicationId
- UserId
- UserName
- LowerredUserName
- Mobile Alias
- IsAnonymous
- LastActivityDate
dbo.aspnet_membership
- ApplicationId
- UserId
- UserName
- Comment
dbo.UserProject
- UserProjectId(PK)
- ProjectId
- UserName
dbo.Project
- ProjectId (PK)
- ProjectSubGroupId
- ProjectCoded
I would like to retrieve value from Comment field which contain fullname
currently i can do project.UserProject[0].Items.UserName (which will retrieve the username)
Then i need display Full Name (comment field) instead username. How i can achieve this. Currently there is no link between UserProject and dbo.aspnet_,membership.
Please advise