Cannot add an entity that already exists.

Posted by mazhar on Stack Overflow See other posts from Stack Overflow or by mazhar
Published on 2010-05-08T13:50:03Z Indexed on 2010/05/08 13:58 UTC
Read the original article Hit count: 223

Filed under:
|
|

Code:

    public ActionResult Create(Group group)
    {
        if (ModelState.IsValid)
        {
            group.int_CreatedBy = 1;
            group.dtm_CreatedDate = DateTime.Now;
            var Groups = Request["Groups"];
            int GroupId = 0;
            GroupFeature GroupFeature=new GroupFeature();
            foreach (var GroupIdd in Groups)
            {
            //    GroupId = int.Parse(GroupIdd.ToString());


            }
            var Features = Request["Features"];
            int FeatureId = 0;
            int t = 0;
            int ids=0;

            string[] Feature = Features.Split(',').ToArray();
            //foreach (var FeatureIdd in Features)
            for(int i=0; i<Feature.Length; i++)
            {
                if (int.TryParse(Feature[i].ToString(), out ids))
                {

                    GroupFeature.int_GroupId = 35;

                    GroupFeature.int_FeaturesId = ids;
                    if (ids != 0)
                    {
                        GroupFeatureRepository.Add(GroupFeature);
                        GroupFeatureRepository.Save();
                    }
                }

            }




            return RedirectToAction("Details", new { id = group.int_GroupId });

        }
        return View();
    }

I am getting an error here Cannot add an entity that already exists. at this line GroupFeatureRepository.Add(GroupFeature); GroupFeatureRepository.Save();

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about asp.net-mvc