我有一个尝试实施的业务策略,以便将测试结果输入数据库。我需要做的是首先确定需要多少条目,例如:
每个托盘保持4次测试。 5个托盘需要20次测试。
从这里开始,我想创建一个包含20行和5列的数据网格(每个相关信息一个)。在提交表单之前,每行都是必需的。
所以我猜我的问题是双重的。 a)如何使用x行数和5列创建网格。不多也不少。 b)我如何使用它将每一行作为记录插入数据库上下文?
答案 0 :(得分:0)
拼图的一部分是笛卡尔积。您可以将4个测试插入“temp_tests”表,将5个托盘插入“temp_pallets”表,然后select * from temp_tests, temp_pallets
,以获得4 * 5 = 20行的笛卡尔积。然后你必须将行分组回一个很好的表(我推测)4列(测试)的5行(托盘)。你如何做到这一点非常依赖于实现。您使用的是哪种RDBMS?
或者,你可以编写一个“通用”测试矩阵(基本上是一个“决策网格”(google that)),只需处理测试名称和“托盘”(在这种情况下)作为网格上的“标签”...然后您需要的是将数据从通用网格(全部字符串)提供给特定测试... ergo a“parser”...每个不同的一个设置的测试情况下的论点。
这对你有意义吗?
干杯。基思。
答案 1 :(得分:0)
我想通了,经过测试和工作。在设计模式下,我设置了datagrid,以便用户无法添加其他行。我还设置了列/名称/等。然后:
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();
}
}
}