实体框架 Codefirst 和 ASP.NET 成员资格
有人有如何使用实体框架 CodeFirst 正确引用实体中 ASP.NET 成员资格表(用户)中的用户的示例吗?我希望 CodeFirst 生成的表引用现有的 ASP.NET 成员资格表。如果需要,我可以详细说明。
Does anybody have an example of how to properly reference a user in an ASP.NET membership table (users) in an entity using Entity Framework CodeFirst? I want the resulting table from CodeFirst to reference the existing ASP.NET membership tables. I can elaborate more if required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定我是否在回答你的问题。但我在ForeignKey约束中使用“aspnet_Users”表的“UserId”字段来引用用户。
I'm not sure I'm answering your question. But I use the "UserId" field of the "aspnet_Users" table in ForeignKey constraints to reference users.
我最近专门为代码优先开发构建了一个会员提供程序,我基于 Altairis 代码优先示例,但如果需要,我的可以整齐地放置在远离项目代码的单独库中。
请访问:http://cfmembershipprovider.codeplex.com
I recently built a membership provider specifically for code-first development, I based it on the Altairis code-first example but mine has the ability to sit neatly in a separate library away from project code if the need arises.
Check it out at: http://cfmembershipprovider.codeplex.com