ASP.NET SQL 成员资格表
将我的表(例如客户、订单)与成员资格表中的用户联系起来的最佳方法是什么?有没有办法以某种方式使用 int 来绑定它?
What's the best way to tie my tables (like Customer, Orders) to the Users in the membership tables. Is there a way to tie it using an int somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
User.ProviderUserKey
,但它是一个 GUID,而不是一个 int。这将映射到 aspnet_Membership 表中的 UserId 字段You can use the
User.ProviderUserKey
but that is a GUID, not an int. That will map to the UserId field in the aspnet_Membership table