gpt4 book ai didi

c# - 构建表示 Rubric 的对象的正确方法是什么

转载 作者:行者123 更新时间:2023-11-28 02:11:12 26 4
gpt4 key购买 nike

我有一个Rubric我需要在我的应用程序中表示的实体。我已经创建了一个实现,但不幸的是,我的直觉感觉我创建的数据结构有缺陷(例如,我看不到一种“好的”方式来表示它的关系)。

请注意,数据结构的功能必须允许将任意数量的列(和列标题)添加到行中。

基本上我有两个问题,首先是否有某种方法来构造这个对象,以便它可以与标准 SQL 数据库相关地持久化,或者序列化是我的首选选择?

其次,无论第一个问题的答案如何,是否有比我使用的方法更好的方法来表示此结构?我很确定有,而且我只是能想到......

预先感谢您的任何意见

Rubric

我目前的代表。它将被映射回 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}]
}]
};

最佳答案

回答你的第二个问题,这样的结构怎么样?

var rows = [
{
name: 'Stated Objective or Performance'
columns: [
{
name: 'Beginning',
value: 1,
text: 'Lorem ipsum dolor...'
},
{
name: 'Developing',
value: 2,
text: 'Lorem ipsum dolor...'
}
]
},
{
// another row
}
];

关于c# - 构建表示 Rubric 的对象的正确方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17056203/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com