为了将测试结果输入数据库,我正在尝试实现一个业务策略。我需要做的是首先确定需要多少个条目,例如:
每个搁置托盘进行4次测试。搁置的5个托盘需要20次测试。
从这里开始,我想创建一个数据网格,它有20行和5列(每个相关信息对应一列)。在提交表格之前,每一行都是必需的。
所以我想我的问题有两个方面。a) 如何创建x行5列的网格。不多不少。b) 如何使用它将每一行作为记录插入数据库上下文?
其中一块拼图是笛卡尔乘积。您可以将4个测试插入"temp_tests"表,将5个托盘插入"temp_pallets"表,然后select * from temp_tests, temp_pallets
,得到4*5=20行的笛卡尔乘积。然后,您必须将行重新分组到一个由(我认为)4列(测试)5行(托盘)组成的漂亮表格中。如何做到这一点在很大程度上取决于实施。您正在使用哪种RDBMS?
或者,可以编写一个"通用"测试矩阵(基本上是一个"决策网格"(谷歌)),并将测试名称和"托盘"(在这种情况下)视为网格上的"标签"。。。那么您所需要的就是将数据从(所有字符串的)通用网格馈送到特定测试。。。ergo是一个"解析器"。。。每个不同的测试用例参数集一个。
这些对你来说有意义吗?
干杯。基思。
我想好了,测试并工作了。在设计模式中,我设置了数据网格,这样用户就不能添加额外的行。我还设置了列/名称等。然后:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Coke_Hold_Database
{
public partial class frmEnterTestResult : Form
{
Record_HoldData thisHold = new Record_HoldData();
linqCokeDBDataContext db = new linqCokeDBDataContext();
public frmEnterTestResult(Record_HoldData hold)
{
InitializeComponent();
this.thisHold = hold;
//sample
int palletSize = 96;
int palletsOnHold = Math.Abs(thisHold.HoldQty / palletSize);
int requiredSamples = palletsOnHold * 4;
//create datagrid rows?
for (short i = 0; i < requiredSamples; i++)
{
dgTestResults.Rows.Add();
}
//fill the grid widths
dgTestResults.Columns[0].FillWeight = 30;
dgTestResults.Columns[1].FillWeight = 30;
dgTestResults.Columns[2].FillWeight = 30;
dgTestResults.Columns[2].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
}
private void button1_Click(object sender, EventArgs e)
{
//create a list that will store each row as an object
List<Record_TestResult> testResultList = new List<Record_TestResult>();
//create an object for every row
foreach (DataGridViewRow item in dgTestResults.Rows)
{
//create a new object
Record_TestResult results = new Record_TestResult();
//set the details of the hold in the object
results.HoldID = thisHold.HoldID;
results.type = thisHold.NonConformingItem;
results.entryTime = DateTime.Now;
//traverse the grid and update the object values from user input
results.productTime = Convert.ToDateTime(item.Cells[0].Value);
results.result = Convert.ToDecimal(item.Cells[1].Value);
results.pass = Convert.ToBoolean(item.Cells[2].Value);
results.testedBy = 1002; //stub
//add the completed object to the list
testResultList.Add(results);
}
//add the list to what LINQ will submit and then submit
db.Record_TestResults.InsertAllOnSubmit(testResultList);
db.SubmitChanges();
}
}
}