如何从db获取数据并设置为嵌套列表<object>

时间:2015-12-29 14:10:17

标签: class view nested

我有一个嵌套的list<object>

public class ItemsOfQuestions { 
    public string item_title { get; set; } 
    public Byte item_type { get; set; } 
    public string item_image { get; set; } 
    public Int16 item_grade { get; set;}
} 
public class Questins_With_Items { 
    public string question_title { get; set; } 
    public List<ItemsOfQuestions> list_items { get; set; } 
}

我从db获取数据并设置为list, 但是我得到了这个错误:

  

最佳重载方法匹配   'System.Collections.Generic.List.Add(graph1.ViewModels.ItemsOfQuestions)'   有一些无效的论点

有人可以帮忙吗?

0 个答案:

没有答案