📄 idmdataset.designer.cs
字号:
global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
any.Namespace = ds.Namespace;
sequence.Items.Add(any);
type.Particle = sequence;
global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
if (xs.Contains(dsSchema.TargetNamespace)) {
global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
try {
global::System.Xml.Schema.XmlSchema schema = null;
dsSchema.Write(s1);
for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
s2.SetLength(0);
schema.Write(s2);
if ((s1.Length == s2.Length)) {
s1.Position = 0;
s2.Position = 0;
for (; ((s1.Position != s1.Length)
&& (s1.ReadByte() == s2.ReadByte())); ) {
;
}
if ((s1.Position == s1.Length)) {
return type;
}
}
}
}
finally {
if ((s1 != null)) {
s1.Close();
}
if ((s2 != null)) {
s2.Close();
}
}
}
xs.Add(dsSchema);
return type;
}
public delegate void deliverlistRowChangeEventHandler(object sender, deliverlistRowChangeEvent e);
public delegate void orderRowChangeEventHandler(object sender, orderRowChangeEvent e);
/// <summary>
///Represents the strongly named DataTable class.
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[global::System.Serializable()]
[global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class deliverlistDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
private global::System.Data.DataColumn columngoodsno;
private global::System.Data.DataColumn columngoodsnum;
private global::System.Data.DataColumn columngoodslvl;
private global::System.Data.DataColumn columndelivernum;
private global::System.Data.DataColumn columngoodsname;
private global::System.Data.DataColumn columnikeano;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public deliverlistDataTable() {
this.TableName = "deliverlist";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal deliverlistDataTable(global::System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected deliverlistDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn goodsnoColumn {
get {
return this.columngoodsno;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn goodsnumColumn {
get {
return this.columngoodsnum;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn goodslvlColumn {
get {
return this.columngoodslvl;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn delivernumColumn {
get {
return this.columndelivernum;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn goodsnameColumn {
get {
return this.columngoodsname;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataColumn ikeanoColumn {
get {
return this.columnikeano;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public deliverlistRow this[int index] {
get {
return ((deliverlistRow)(this.Rows[index]));
}
}
public event deliverlistRowChangeEventHandler deliverlistRowChanging;
public event deliverlistRowChangeEventHandler deliverlistRowChanged;
public event deliverlistRowChangeEventHandler deliverlistRowDeleting;
public event deliverlistRowChangeEventHandler deliverlistRowDeleted;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AdddeliverlistRow(deliverlistRow row) {
this.Rows.Add(row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public deliverlistRow AdddeliverlistRow(string goodsno, int goodsnum, int goodslvl, int delivernum, string goodsname, orderRow parentorderRowByorderdeliverlist) {
deliverlistRow rowdeliverlistRow = ((deliverlistRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
goodsno,
goodsnum,
goodslvl,
delivernum,
goodsname,
null};
if ((parentorderRowByorderdeliverlist != null)) {
columnValuesArray[5] = parentorderRowByorderdeliverlist[2];
}
rowdeliverlistRow.ItemArray = columnValuesArray;
this.Rows.Add(rowdeliverlistRow);
return rowdeliverlistRow;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public deliverlistRow FindBygoodsnoikeano(string goodsno, string ikeano) {
return ((deliverlistRow)(this.Rows.Find(new object[] {
goodsno,
ikeano})));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual global::System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override global::System.Data.DataTable Clone() {
deliverlistDataTable cln = ((deliverlistDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override global::System.Data.DataTable CreateInstance() {
return new deliverlistDataTable();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columngoodsno = base.Columns["goodsno"];
this.columngoodsnum = base.Columns["goodsnum"];
this.columngoodslvl = base.Columns["goodslvl"];
this.columndelivernum = base.Columns["delivernum"];
this.columngoodsname = base.Columns["goodsname"];
this.columnikeano = base.Columns["ikeano"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columngoodsno = new global::System.Data.DataColumn("goodsno", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columngoodsno);
this.columngoodsnum = new global::System.Data.DataColumn("goodsnum", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columngoodsnum);
this.columngoodslvl = new global::System.Data.DataColumn("goodslvl", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columngoodslvl);
this.columndelivernum = new global::System.Data.DataColumn("delivernum", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columndelivernum);
this.columngoodsname = new global::System.Data.DataColumn("goodsname", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columngoodsname);
this.columnikeano = new global::System.Data.DataColumn("ikeano", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnikeano);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columngoodsno,
this.columnikeano}, true));
this.columngoodsno.AllowDBNull = false;
this.columngoodsno.MaxLength = 20;
this.columngoodsname.MaxLength = 50;
this.columnikeano.AllowDBNull = false;
this.columnikeano.MaxLength = 20;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public deliverlistRow NewdeliverlistRow() {
return ((deliverlistRow)(this.NewRow()));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
return new deliverlistRow(builder);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override global::System.Type GetRowType() {
return typeof(deliverlistRow);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -