3

我正在使用 C# 和 SQL Server 2005 开发一个 ASP .Net MVC 3 应用程序。

我也在使用实体框架和代码优先方法。

我的问题是,当我想在基础中记录时,这些值正在传递 NULL。

在此处输入图像描述

错误是:

无法将值 NULL 插入到列“ID_Gamme”表“Flux.dbo.Gamme”中。此列不接受 NULL 值。插入失败。该语句已终止

为了解释,我有 3 个表: Profile_Ga (ID_Gamme(PK),.....) Poste (ID_Poste(PK),....) Gamme (ID_Poste(PK),ID_Gamme(PK),.... ) 这是 Poste 和 Profile_Ga 之间的关系表。

我想使用其他 2 个表中的参数记录在表Gamme中。

所以这是我将输入参数的表格: 形式

所以让我们从 Views 开始,这是 Index 的代码:

    <% using (Html.BeginForm("Create", "Anouar"))
   { %>
  <div><%:Html.Label("Gamme :")%><%: Html.DropDownList("SelectedProfile_Ga", new SelectList(Model.Profile_GaItems, "ID_Gamme", "ID_Gamme"))%> <input type="button" value="Configurer" id="btnShowGestion" /></div> 




<div id="divGestion"><%: Html.Partial("Gestion", Model) %></div>
       <% } %>   
and this is the Partial View 'Gestion.ascx' :

    <fieldset class="parametrage">
            <legend>Gestion de Gamme</legend>

            <div><%:Html.Label("Poste :")%><%: Html.DropDownList("SelectedPoste", Model.PostesItems)%><input type="checkbox" name="option1" value="Poste Initial" id= "chkMain" onclick="test();"/>Poste Initial<input type="checkbox" name="option2" value="Poste Final" id= "chkFirst" onclick="test2();"/>Poste Final</div>


             <div><%:Html.Label("Nombre de Passage :")%><%: Html.EditorFor(x=>x.YourGammeModel.Nbr_Passage)%></div>
            <div><%:Html.Label("Position :")%><%: Html.EditorFor(x=>x.YourGammeModel.Position)%></div>
            <div><%:Html.Label("Poste Précédent :")%><%: Html.DropDownList("PostePrecedentSelected", Model.PostesItems)%></div>
            <div><%:Html.Label("Poste Suivant :")%><%: Html.DropDownList("PosteSuivantSelected", Model.PostesItems)%></div>
            <div><input type="submit" value="Enregistrer" id="btnSave"  /></div>

            </fieldset>

这是填充视图“索引”的控制器:

public class ProfileGaController : Controller
    {
        private GammeContext db = new GammeContext();

        //
        // GET: /ProfileGa/
        [HttpGet]
        public ActionResult Index(Profile_Ga profile_ga, Poste poste)
        {

            var viewModel = new FlowViewModel();
            viewModel.PostesItems = new SelectList(db.Postes.ToList(), "ID_Poste", "ID_Poste"); 
            //viewModel.PostesItems = db.Postes.ToList() ?? new List<Poste>();
               viewModel.Profile_GaItems = db.Profil_Gas.ToList();
               viewModel.GaItems = db.Gammes.ToList();

            return View(viewModel);



        }

这是填充 PartialView 的控制器:

public class AnouarController : Controller
    {

         private GammeContext db = new GammeContext();


        //
        // GET: /Anouar/

         public ActionResult Gestion(FlowViewModel model)
         {

             model.YourGammeModel = new Gamme();
             return PartialView(model);

         }

         [HttpPost]
         public ActionResult Create(FlowViewModel model)
         {
        if (ModelState.IsValid)
            {

                db.Gammes.Add(model.YourGammeModel);
                db.SaveChanges();
                return RedirectToAction("Gestion");  
            }


            return View(model.YourGammeModel);
        }
    }

注意:这个控制器是一个包含“创建”功能的控制器,它允许我们在基础中记录。

最后这是包含属性的 ViewModel :

public class FlowViewModel
    {

        [Key]
        public string IDv { get; set; }
        [NotMapped]
        public SelectList PostesItems { get; set; }

        public List<Profile_Ga> Profile_GaItems { get; set; }
        public List<Gamme> GaItems { get; set; }

        public Gamme YourGammeModel { get; set; }

        public int SelectedProfile_Ga { get; set; }

        public int SelectedGamme{ get; set; }

        public int SelectedPoste { get; set; }

        public int PostePrecedentSelected { get; set; } 
        public int PosteSuivantSelected { get; set; }        
    }

我认为“YourGammeModel”并没有设置所有属性。那是问题。

GameContext 的代码:

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>();
        }

        public DbSet<FlowViewModel> FlowViewModels { get; set; }


    }
4

1 回答 1

1

将模型返回给控制器时,您需要包含模型中的所有字段

用于<%: Html.HiddenFor(x=>x.YourGammeModel.[[Field]]%>每个字段

于 2013-05-17T11:04:16.330 回答