创建自定义成员资格提供程序(实体框架与 Linq)
我正在开始开发自定义会员资格提供商,我想知道哪个选项最适合在 Linq 或实体框架中开发此应用程序?
另外,我需要通过一个通用 ID 链接来自不同数据库的两个表,我想知道是否有人知道有关创建使用 Linq 或实体框架来执行此操作的 MVC 3 Web 应用程序的任何好的教程。
根据我的研究,实体框架似乎是适合我的情况的最佳方法,但我希望得到一些建议/确认,以证明这种正确且对教程有一点指导是可能的?
I'm starting work on a Custom Membership provider and I was wondering which option would be the best to develop this application in Linq or Entity Framework?
Also I have a need to link two table from different database via a common ID and I was wondering does anyone know of any good tutorials about creating a MVC 3 Web Application that uses either Linq or Entity Framework to do this.
From my research Entity Framework seems to be the best method suited to my situation but I would appreciate some advice / confirmation that this correct and a little direction to a tutorial is possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Linq 是指 Linq to SQL 与实体框架?如果是这样,那么我建议使用实体框架。微软在 Linq to SQL 上的开发实际上已经停止,因此 EF 拥有更好的未来。
NerdDinner 是使用 ASP MVC 2 和实体框架的更流行的教程应用程序之一。 ASP MVC 2 非常相似,足以从基本概念开始。这是一个很好的演练教程:
http://nerddinnerbook.s3.amazonaws.com/Intro.htm
代码本身是免费提供的:
http://nerddinner.codeplex.com/
By Linq, you mean Linq to SQL vs. Entity framework? If so, then I would recommend using Entity Framework. Microsoft's development on Linq to SQL has virtually stopped so EF has a better future.
NerdDinner is one of the more popular tutorial applications that uses ASP MVC 2 and entity framework. ASP MVC 2 is similar enough to get started with the basic concepts. Here is a good walk through tutorial:
http://nerddinnerbook.s3.amazonaws.com/Intro.htm
The code itself is freely available:
http://nerddinner.codeplex.com/