我正在使用C#和SQL Server 2005开发ASP .Net MVC 3应用程序。 我也使用实体框架和代码优先方法。
我有一个LOG ON(连接)的接口,但它与我的基础无关,我有一个USER表(包含Login +密码)。
问题在于我无法改变连接的方式。确切地说,我希望thr连接与我的基础有关。
这很困难因为我使用了Entity Framework和Code First方法。
有没有解决方案?
这是我的查看登录:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage"%>
<p>
S'il vous plaît entrer votre Login et Mot de Passe pour vous connecter :
</p>
<% using (Html.BeginForm("Logon", "Account")) { %>
<table>
<tr><td><label for="username" style="width:10em">Matricule :</label></td><td><%= Html.TextBox("Matricule") %><%= Html.ValidationMessage("Matricule") %></td></tr>
<tr><td><label for="password" style="width:10em">Mot de passe:</label></td><td><%= Html.Password("passWord") %><%= Html.ValidationMessage("passWord") %></td></tr>
<tr><td></td><td><%= Html.CheckBox("rememberMe") %> <label for="rememberMe">Se souvenir de moi ?</label></td></tr>
<tr><td></td><td><input type="submit" value="Se Connecter" /></td></tr>
</table>
<% } %>
这个控制器:
public ActionResult LogOn()
{
return View();
}
[AcceptVerbs(HttpVerbs.Post)]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Needs to take same parameter type as Controller.Redirect()")]
public ActionResult LogOn(string Matricule, string passWord, bool rememberMe, string returnUrl)
{
if (!ValidateLogOn(Matricule, passWord))
{
return View();
}
FormsAuth.SignIn(Matricule, rememberMe);
if (!String.IsNullOrEmpty(returnUrl))
{
return Redirect(returnUrl);
}
else
{
return RedirectToAction("Index", "Home");
}
}
谢谢你的回答,
首先,我没有使用WEB API
我的应用程序是一个带有C#和使用SQL SERVER 2005数据库的ASP MVC 3应用程序
其次,我将尝试解释更多:
我创建了一个Internet应用程序(新项目 - &gt; ASP .NET MVC 3 WEB APPLICATION - &gt; Internet Application)
如您所知,当您创建Internet应用程序时,VS为您创建了一种使用Cookie进行登录和注册的方法
我使用Entity Framework 4和Code First创建了我的数据库(创建了许多模型,这些模型将作为我的基础中的表生成)
所以,我有一个表用户,其中包含一个Nom(登录)+密码。
我希望当我在Web Inerface(textBox)中输入登录名和密码时,编辑器会在表User中验证它们是否为conforme或no(存在)。
这是我的模特用户:
{
public class User
{
[Required]
[Key]
[Display(Name = "Matricule :")]
public string Matricule { get; set; }
[Required]
[Display(Name = "Nom :")]
public string Nom_User { get; set; }
[Required]
[StringLength(100, ErrorMessage = "Le {0} doit avoir au minimum {2} caractères.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Mot de passe :")]
public string passWord { get; set; }
[Required]
[ForeignKey("Account")]
[Display(Name = "Type :")]
public string Type_User { get; set; }
[Required]
[ForeignKey("UF")]
[Display(Name = "ID UF :")]
public string ID_UF { get; set; }
public virtual Account Account { get; set; }
public virtual UF UF { get; set; }
public virtual ICollection<User> Users { get; set; }
}
这是Context文件:
namespace MvcApplication2.Models
{
public class GammeContext : DbContext
{
public GammeContext()
{
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<GammeContext>());
}
public DbSet<Account> Accounts { get; set; }
public DbSet<Ns_AFaire> Ns_AFaires { get; set; }
public DbSet<Famille> Familles { get; set; }
public DbSet<Fonction> Fonctions { get; set; }
public DbSet<Fonction_Poste> Fonction_Postes { get; set; }
public DbSet<Gamme> Gammes { get; set; }
public DbSet<Historique> Historiques { get; set; }
public DbSet<Ligne> Lignes { get; set; }
public DbSet<Phase> Phases { get; set; }
public DbSet<Poste> Postes { get; set; }
public DbSet<Produit> Produits { get; set; }
public DbSet<Profile_Ga> Profil_Gas { get; set; }
public DbSet<Sous_Famille> Sous_Familles { get; set; }
public DbSet<UF> UFs { get; set; }
public DbSet<User> Users { get; set; }
public DbSet<Num_Serie> Num_Series { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<System.Data.Entity.ModelConfiguration.Conventions.PluralizingTableNameConvention>();
}
}
}