本文介绍了与ADO而不是实体framweork的MVC5身份 - 我需要什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在启动一个MVC5应用程序,我想在没有Entity框架的情况下使用身份功能。以下是具体细节:



0)具有个人用户身份验证的MVC5(.Net 4.6n)(通过标准用户ID / pwd登录或使用通用访问卡) (CAC)。



1)没有外部登录,例如facebook,google,twitter等



2)*所有*数据库访问都是通过存储过程执行的



3)由于上面的#2,我们想要使用ADO而不是EntityFramework,或任何其他ORM就此而言。与少数ADO方法相比,ORM在内存和磁盘空间方面拥有巨大的足迹,我们不需要ORM来管理我们的表格。



我尝试过的事情:



谷歌相当多但是风景很混乱,部分和荒谬的答案。

I am starting a MVC5 app, and I want to use the identity functionality without Entity framework. Here are the specifics:

0) MVC5 (.Net 4.6n) with individual user authentication (either via a standard userid/pwd login, or with a common access card (CAC).

1) No external logins, such as facebook, google, twitter, etc

2) *All* database access is performed via stored procs

3) Because of #2 above, we want to use ADO instead of an EntityFramework, or any other ORM for that matter. ORMs have massive footprints in terms of memory and disk space compared to a handful of ADO methods, and we don't need an ORM to manage our tables for us.

What I have tried:

Google quite a bit but the landscape is quite cluttered with partial and nonsensical answers.

推荐答案


这篇关于与ADO而不是实体framweork的MVC5身份 - 我需要什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 10:30