我在这里有几个问题。
>如果我想使用身份认证,有没有理由不使用MVC模板?还是有理由使用空模板? MVC模板也提供引导。
>我有一个数据库创建,我想要一个DB首先开发。如果我使用MVC模板,将在项目文件夹下创建用于凭据的数据库。我如何合并这两个数据库,或者我应该使用两个数据库?
如果我的问题是愚蠢的,只要忽略我,或告诉我先读什么。
我知道社区的人都很好但至关重要。
谢谢
解决方法
@H_403_13@1) If I want to use identity authentication,is there a reason not to use
MVC template? Or is there a reason to use empty template? MVC template
also provides bootstrap.
身份认证,MVC模板和引导并没有真正相关。
如果创建新的MVC 5应用程序,则会为您创建AccountController。您可以使用该AccountController作为起点。
如果你愿意,你可以删除AccountController并自己创建一个,但这是很多工作。
2) I have a database created,I want to have a DB first development. If I
use the MVC template,the database for credentials will be created
under the project folder. How can I merge the two database or I should
just use two databases?
您不需要两个数据库 – 您可以将Identity表和自定义表放在同一数据库中。
从身份开始 – 让它创建数据库及其所需的表。然后可以向该Identity数据库添加自定义表。
要么