我有一个Rubric实体,需要在我的应用程序中表示。我创建了一个实现,但不幸的是,我的直觉感觉我创建的数据结构有缺陷(例如,我看不到一种“好”的方式来表示它)。
请注意,数据结构的功能必须允许将任意数量的列(和列标题)添加到行中。
基本上我有 2 个问题,首先是否有某种方法来构造这个对象,以便它可以与标准 SQL 数据库相关地持久化,或者序列化是我的首选?
其次,无论第一个问题的答案如何,有没有比我使用的更好的方法来表示这种结构?我很确定有而且我能想到它......
提前感谢您的任何输入
我目前的代表。它将被映射回 C# 类(我只是先构建客户端)
var Data = {
ColumnsHeaders: [{ name: "Beginning", value: 1 },
{ name: "Developing", value: 2 },
{ name: "Accomplished", value: 3 },
{ name: "Examplary", value: 4}],
Rows: [{
Description: "Stated Objective or Performance",
Columns: [{ text: "Description of identifiable performance characteristics reflecting a beggining level of performance", value: 1 },
{ text: "Description of identifiable performance characteristics reflecting movement toward a mastery of performance", value: 2 },
{ text: "Description of identifiable performance characteristics reflecting a mastery of performance", value: 3 },
{ text: "Description of identifiable performance characteristics reflecting a high level of performance", value: 4}]
}]
};