ASP.NET 2.0 中的成员资格和角色提供程序与非 SQL Server 提供程序?
我已经快速阅读了(并将很快更加仔细地阅读)Scott Allen 的文章,该文章涉及使用默认 SQL Express 或 SQL Server 数据库的其他提供商来使用“成员身份和角色提供程序”用于 ASP.NET。
我们很快需要通过网络向某些客户开放我们项目的一部分,我考虑使用“成员身份和角色提供者",但我们的数据库是 PostGreSql。
有没有人对“成员资格和角色提供程序 以及其他数据库类型(不是 SQL Server)?值得还是很痛苦?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我试了一下MySQL,发现不可能。 这可能是因为我的技能相对较低,而且我是在 2.0 发布大约 5 个月后才完成的。 自己编写一个简单的安全系统是不是太过分了?
有一个备用会员资格提供商:http://www.codeplex.com/SnitzMember
I gave it a go on MySQL and found it to be impossible. That could be attributed to my relatively low skill, and the fact that I did it about 5 months after 2.0 release. Is it too much to write your own simple security system?
There is an alternate membership provider at: http://www.codeplex.com/SnitzMember
它实际上相当简单。 它基本上只是一个带有一些需要实现的方法的接口,并且大多数方法都相当简单。
我在 MSSQL 中实现了一个,但使用了另一个应用程序中的现有成员数据库。 您可以在 http://www.codeplex.com/SnitzMember 找到它
It actually fairly simple. It's basically just an interface with a handful of methods that need to be implemented, and most are fairly straight-forward.
I implemented one, in MSSQL, but using an existing membership database from another application. You can find it at http://www.codeplex.com/SnitzMember
您应该能够轻松编写使用 PostgreSQL 作为数据存储的自定义成员资格
you should easily be able to write a custom membership provider that uses PostgreSQL as a datastore