我正在尝试将Excel中的类别和子类别插入到数据库表中。
我有一个包含一些数据的Excel文件,我在这个Excel文件中创建dataset
,其中包含大量datatables
。
在此dataset
中,我有2 datatables
的形式:
带有记录的数据表0:类别
ParentCategory Description
Electronics jhdkhsd
Sports kjshfhs
带有记录的数据表1:子类别
Subcategory ParentCategory Description
Mobile Electronics weprwp
Tv Electronics sdflskd
Balls Sports kjshdfkjh
Shoes Sports uytuyt
现在我的数据库表是这样的:
分类:Id,Name,Description,parentid
到目前为止,我已成功插入父类别,但现在尝试插入子类别,但这是我目前正在努力的地方。
到目前为止我的代码:
var dsFinal = new DataSet();
//Some code to read excel sheets and data from excel and create datatables and records with it.
dsControlSheet.Tables[0].Columns.Add("Id");
DataColumn parentId = new DataColumn("ParentId", typeof(int));
parentId.DefaultValue = 0;
dsFinal.Tables[0].Columns.Add(parentId);
dsFinal.Relations.Add("Abc",dsFinal.Tables[0].Columns["ParentCategory"],
dsFinal.Tables[1].Columns["ParentCategory"],false); //creating relation ship between Category datatable
// and SubCategory datatable on field ParentCategory
using (SqlConnection connection = new SqlConnection(""))
{
SqlDataAdapter adapter = new SqlDataAdapter();
var insertCommand = new SqlCommand("insert into Category (Name,Description) values (@ParentCategory,@Description) SET @Id = SCOPE_IDENTITY()", connection);
var parameter = insertCommand.Parameters.Add("@Id", SqlDbType.Int, 0, "Id");
insertCommand.Parameters.Add("@ParentCategory", SqlDbType.NVarChar, 50, "ParentCategory");
insertCommand.Parameters.Add("@Description", SqlDbType.NVarChar, 50, "Description");
parameter.Direction = ParameterDirection.Output;
insertCommand.UpdatedRowSource = UpdateRowSource.OutputParameters;
adapter.InsertCommand = insertCommand;
adapter.Update(dsFinal.Tables[0]); //successfully inserted parent category and got autoincremented value in Id column of my 0th datatable
//trying to insert child category using above insert command
foreach (DataRow parentCategory in dsFinal.Tables[0].Rows)
{
var child = parentCategory.GetChildRows("Abc").CopyToDataTable();//get child category of particular parent
adapter.Update(child);
}
}
这里是插入子类的最后一个循环;我对如何使用感到困惑
插入子类别的insertCommand
变量是否相同?
更新:我使用datatable Expression
来计算parentid
,如下所示:
using (SqlConnection connection = new SqlConnection(""))
{
SqlDataAdapter adapter = new SqlDataAdapter();
var insertCommand = new SqlCommand("insert into Category (Name,Description) values (@ParentCategory,@Description) SET @Id = SCOPE_IDENTITY()", connection);
var parameter = insertCommand.Parameters.Add("@Id", SqlDbType.Int, 0, "Id");
insertCommand.Parameters.Add("@ParentCategory", SqlDbType.NVarChar, 50, "ParentCategory");
insertCommand.Parameters.Add("@Description", SqlDbType.NVarChar, 50, "Description");
parameter.Direction = ParameterDirection.Output;
insertCommand.UpdatedRowSource = UpdateRowSource.OutputParameters;
adapter.InsertCommand = insertCommand;
adapter.Update(dsFinal.Tables[0]); //successfully inserted parent category and got autoincremented value in Id column of my 0th datatable
//For inserting child category..
//added column parentid to store child category
SqlDataAdapter da = new SqlDataAdapter();
dsFinal.Tables[1].Columns.Add("ParentId", typeof(int), "IIF(Parent.ParentCategory=ParentCategory,parent.Id,0)");
var insertChildCategoryCommand = new SqlCommand("insert into Category (Name,Description,ParentId) values (@Subcategory,@Description,@ParentId) SET @Id = SCOPE_IDENTITY()", connection);
var parameter1 = insertChildCategoryCommand.Parameters.Add("@Id", SqlDbType.Int, 0, "Id");
insertChildCategoryCommand.Parameters.Add("@Subcategory", SqlDbType.NVarChar, 50, "Subcategory");
insertChildCategoryCommand.Parameters.Add("@Description", SqlDbType.NVarChar, 50, "Description");
insertChildCategoryCommand.Parameters.Add("@ParentId", SqlDbType.int, 0, "ParentId");
parameter1.Direction = ParameterDirection.Output;
insertChildCategoryCommand.UpdatedRowSource = UpdateRowSource.OutputParameters;
da.InsertCommand = insertChildCategoryCommand;
//Error here that computed column cannot be inserted.Here computed column is parentid
da.Update(dsFinal.Tables[1]);
}
错误:Computed column(parentid) cannot be inserted
答案 0 :(得分:2)
你几乎有最新的代码。
唯一的问题是不允许计算列用于插入/更新数据库表。顺便说一下,错误信息不是" 计算列(parentid)无法插入。",但是:
来自SourceColumn' ParentId'的列映射失败,因为DataColumn' ParentId'是一个计算列。
我同意这个消息可能更好,而且我也没有找到任何描述它的文档。最有可能的理由是计算列通常不存储。
无论原因是什么,这都是现实。除了创建常规列并手动填充数据之外别无选择。
有很多方法可以做到这一点(效率和低效),但是一旦你已经创建了一个关系,就可以使用DataRow.GetParentRow
方法来定位相关的类别记录。
说了这么多,替换
行dsFinal.Tables[1].Columns.Add("ParentId", typeof(int),
"IIF(Parent.ParentCategory=ParentCategory,parent.Id,0)");
使用以下代码段:
var dtSubCategory = dsFinal.Tables[1];
dtSubCategory.Columns.Add("ParentId", typeof(int));
foreach (var drSubCategory in dtSubCategory.AsEnumerable())
{
var drCategory = drSubCategory.GetParentRow("Abc");
drSubCategory["ParentId"] = drCategory != null ? drCategory["Id"] : 0;
}
你已经完成了。
编辑:让我说清楚。此处唯一一次关键操作是按名称定位类别ID。使用关系和GetParentRow
相当于在您尝试时评估访问parent
的表达式。数据关系在内部维护用于支持此类操作的查找结构。
如果你想获得最佳表现,那么就不要创建一个关系,而是要创建一个字典。你需要的是一个名字(字符串),找到相应的id(int),所以Dictionary<string, int>
是一个完美的候选人:
var categoryIds = dsFinal.Tables[0].AsEnumerable().ToDictionary(
dr => dr.Field<string>("ParentCategory"), // key
dr => dr.Field<int>("Id") // value
);
var dtSubCategory = dsFinal.Tables[1];
dtSubCategory.Columns.Add("ParentId", typeof(int));
foreach (var drSubCategory in dtSubCategory.AsEnumerable())
{
int categoryId;
categoryIds.TryGetValue(drSubCategory.Field<string>("ParentCategory"), out categoryId);
drSubCategory["ParentId"] = categoryId;
}
答案 1 :(得分:1)
更改您的关系,以便使用Id和ParentId,您的第一个解决方案将正常工作。
当您更新第一个表并获取自动增量值时,它将通过关系自动更新第二个表。这是一个例子。
colParent.AutoIncrement = true;
colParent.AutoIncrementSeed = -1;
colParent.AutoIncrementStep = -1;
使用此方法时,我通常会将列设置为临时“id”值,方法是将列设置为标识列,并将种子和步骤设置为-1。这将在第三行之后。
{{1}}
除非你真的需要在这些字符串字段上建立关系,否则不需要做任何循环,计算列或任何过于复杂的事情。