添加身份验证 WPF / Silverlight 的最佳方法是什么?
我有两个不同的应用程序使用相同的 aspnetdb 数据库 - 一个位于本地的 WPF 应用程序和一个在线 silverlight 应用程序。我需要管理 aspnetdb 数据库中的用户(创建/编辑/分配角色等)。
我是否应该为 aspnetdb 创建数据模型并使用 linq 查询,或者是否应该使用 AspNetSqlMembershipProvider 来管理用户?
I have two different applications using the same aspnetdb database - a WPF application which is in premises and an online silverlight application. I need to manage users in the aspnetdb database(create/edit/assign roles etc).
Whether I should create a datamodel for aspnetdb and use the linq query or whether I should use the AspNetSqlMembershipProvider for managing the users?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个公开 Login 方法的 WCF 服务。我想您的 Silverlight 应用程序无论如何都需要一个。
然后,您可以在两个项目中向新的 WCF 服务“添加服务引用”并通过它登录。
Make a WCF service that exposes Login methods. You'll need one anyway for your Silverlight app I presume.
Then you can "add service reference" to your new WCF service in both projects and login through it.