在DbContext中更新列表<t> </t>

时间:2013-01-24 03:06:23

标签: c# asp.net .net

我有这样的模型

public class Challenge
{
    public int ID { get; set; }
    public string Name { get; set; }
    public string Blurb { get; set; }
    public int Points { get; set; }
    public string Category { get; set; }
    public string Flag { get; set; }
    public List<string> SolvedBy { get; set; }
}

public class ChallengeDBContext : DbContext
{
    public DbSet<Challenge> Challenges { get; set; }
}

然后控制器就像这样。但是我无法更新List&#34; SolvedBy&#34;,下次我使用调试器时,列表仍然是空的。

    [HttpPost]
    public string Index(string flag = "", int id=0)
    {
        Challenge challenge = db.Challenges.Find(id);
        if (flag == challenge.Flag)
        {
            var chall = db.Challenges.Find(id);
            if (chall.SolvedBy == null)
            {
                chall.SolvedBy = new List<string>();
            }
            chall.SolvedBy.Add(User.Identity.Name);
            db.Entry(chall).State = EntityState.Modified;
            db.SaveChanges();
            //congrats, you solved the puzzle
            return "got it";
        }
        else
        {
            return "fail";
        }
    }

是否可以通过它来制作数据库中保存的字符串列表?

2 个答案:

答案 0 :(得分:1)

模型中的List<T>通常会映射到第二个表格,但在DbContext中,您只有一个表格。尝试添加第二个表。

public class ChallengeDBContext : DbContext
{
    public DbSet<Challenge> Challenges { get; set; }
    public DbSet<Solution> Solutions {get; set;}
}

public class Challenge
{
    public int ID { get; set; }
    public string Name { get; set; }
    public string Blurb { get; set; }
    public int Points { get; set; }
    public string Category { get; set; }
    public string Flag { get; set; }
    public List<Solution> SolvedBy { get; set; }
}

public class Solution
{
    public int ID { get; set; }
    public string Name { get; set; }
}

然后你的控制器可以使用代码......

        var chall = db.Challenges.Find(id);
        if (chall.SolvedBy == null)
        {
            chall.SolvedBy = new List<Solution>();
        }
        chall.SolvedBy.Add(new Solution {Name=User.Identity.Name});

以上都没有经过测试,我可能在那里犯了一些错误,但我想说明的一般原则是你需要另一张表。 List<T>表示SQL中的JOIN。

答案 1 :(得分:1)

EF不知道如何在数据库表中存储数组,所以它只是忽略它。您可以创建另一个表/实体或使用XML / JSON来存储列表。您可以在从数据库加载后保存和反序列化列表之前序列化列表