C# 以编程方式创建 ASP.NET 成员资格架构
我想知道动态安装成员资格模式的最佳方法是什么。
现在我正在考虑的解决方案是以某种方式运行 aspnet_regsql.exe
并带有要在我的数据库连接上执行的参数。
我怎样才能做到这一点?有更好的办法吗?
I was wondering what would be the best way to install the membership schema on the fly.
Right now the solution I'm thinking of is to somehow run aspnet_regsql.exe
with arguments to execute on my db connection.
How can I accomplish this? Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我找到了一个更好的方法来完成此任务,我仍然使用
MembershipExists()
函数,但我用这个语句安装它,直到几分钟前我才知道它。Ok I found a much better way to accomplish this, I still use the
MembershipExists()
function, but I install it with this statement, which I didn't know of up until a couple of minutes ago.是这样的吗:
不确定它在生产环境中的表现如何。
Did it like this:
Not sure how it'll behave on a production environment.