ASP.NET 2.0 中的成员资格和角色提供程序与非 SQL Server 提供程序?

发布于 2024-07-07 09:41:28 字数 839 浏览 7 评论 0 原文

我已经快速阅读了(并将很快更加仔细地阅读)Scott Allen 的文章,该文章涉及使用默认 SQL Express 或 SQL Server 数据库的其他提供商来使用“成员身份和角色提供程序”用于 ASP.NET。

我们很快需要通过网络向某些客户开放我们项目的一部分,我考虑使用“成员身份和角色提供者",但我们的数据库是 PostGreSql。

有没有人对“成员资格和角色提供程序 以及其他数据库类型(不是 SQL Server)?值得还是很痛苦?

I have quickly read (and will read with more care soon) the article of Scott Allen concerning the possibility to use an other provider of the default SQL Express or SQL Server database to use the "Membership and Role Providers" for ASP.NET.

We will soon need to open a part of our project to some client via the web and I thought about using the "Membership and Role Providers" but our database is PostGreSql.

Does any one have some experience with "Membership and Role Providers and an other database type (not SQL Server)? Is it worth it or it's a pain?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

-柠檬树下少年和吉他 2024-07-14 09:41:28

我试了一下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

土豪我们做朋友吧 2024-07-14 09:41:28

它实际上相当简单。 它基本上只是一个带有一些需要实现的方法的接口,并且大多数方法都相当简单。

我在 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

等风来 2024-07-14 09:41:28

您应该能够轻松编写使用 PostgreSQL 作为数据存储的自定义成员资格

  1. 提供程序 创建一个继承自 MembershipProvider 的类(例如 PostgreSqlMembershipProvider)
  2. 使用 System.Data.Odbc 中的类实现方法和属性,或者使用 Npgsql (http://pgfoundry.org/projects/npgsql

you should easily be able to write a custom membership provider that uses PostgreSQL as a datastore

  1. Create a class that inherits from MembershipProvider (e.g. PostgreSqlMembershipProvider)
  2. Implement methods and properties using classes in System.Data.Odbc, or alternatively use Npgsql (http://pgfoundry.org/projects/npgsql)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文