Browse Source

Update DataTable state

pull/12/head
sunkaixuna 3 years ago
parent
commit
3a8aa4f5f2
  1. 23
      Src/Asp.NetCore2/SqlSeverTest/SqlSugar/OnlyCore/DataExtensions.cs

23
Src/Asp.NetCore2/SqlSeverTest/SqlSugar/OnlyCore/DataExtensions.cs

@ -105,6 +105,7 @@ namespace SqlSugar
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -145,6 +146,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }
@ -238,7 +240,7 @@ namespace SqlSugar
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -290,6 +292,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }
@ -384,7 +387,7 @@ namespace SqlSugar
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -424,6 +427,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }
@ -518,7 +522,7 @@ namespace SqlSugar
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -558,6 +562,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }
@ -652,7 +657,7 @@ namespace SqlSugar
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -692,6 +697,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }
@ -787,7 +793,7 @@ namespace SqlSugar
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -827,6 +833,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }
@ -922,7 +929,7 @@ namespace SqlSugar
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -962,6 +969,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }
@ -1057,7 +1065,7 @@ namespace SqlSugar
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
} }
dt.AcceptChanges();
} }
/// <summary> /// <summary>
@ -1097,6 +1105,7 @@ namespace SqlSugar
} }
dt.Rows.Add(daRow); dt.Rows.Add(daRow);
} }
dt.AcceptChanges();
ds.Tables.Add(dt); ds.Tables.Add(dt);
} while (dr.NextResult()); } while (dr.NextResult());
} }

Loading…
Cancel
Save