在控制台应用程序中使用 ASP.NET 成员资格提供程序
我正在创建一个控制台应用程序,它将自动将用户创建到 Web 应用程序的数据库中,该应用程序是在 mvc 中构建的,并使用内置的成员资格提供程序和角色进行表单身份验证。
如何在控制台应用程序中使用 AccountMembershipService
和 MembershipCreateStatus
类???我已将程序集和引用添加到 System.Web 和 System.Web.Mvc 以及安全性等,但无法让它识别这些类。
I am creating a console application that will automatically create users into a database of a web application that is built in mvc and uses the built in membership provider and roles for forms authentication.
How can I use the AccountMembershipService
and MembershipCreateStatus
classes from that in a console application??? I've added assemblies and refrences to System.Web
and System.Web.Mvc
and security etc but cannot get it to recognise those classes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将相关元素从 Web 项目
web.config
复制到 winformsapp.config
中。System.Web.Mvc
不是必需的,您还必须在项目设置下从Net 4 Client Profile
更改为.NET 4
。Copy the relevant elements from your web projects
web.config
into the winformsapp.config
.System.Web.Mvc
is not required, and you'll also have to change fromNet 4 Client Profile
to.NET 4
under project settings.使用 MS 的此指南。如果您使用多个提供程序,请务必将该属性放置在 app.config 的部分中,否则您可能会得到其他内容作为默认提供程序,并且提供程序程序集也会出现奇怪的异常:)。
Use this guide from MS. Be sure to place the attribute in section in app.config if you use multiple providers otherwise you may get something else as default provider and strange exceptions for provider assemblies too :).