📄 mydatabasedataset.designer.cs
字号:
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 性别Column {
get {
return this.column性别;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 出生日期Column {
get {
return this.column出生日期;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 学院编码Column {
get {
return this.column学院编码;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 成绩Column {
get {
return this.column成绩;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 照片Column {
get {
return this.column照片;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public MyTable2Row this[int index] {
get {
return ((MyTable2Row)(this.Rows[index]));
}
}
public event MyTable2RowChangeEventHandler MyTable2RowChanging;
public event MyTable2RowChangeEventHandler MyTable2RowChanged;
public event MyTable2RowChangeEventHandler MyTable2RowDeleting;
public event MyTable2RowChangeEventHandler MyTable2RowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddMyTable2Row(MyTable2Row row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public MyTable2Row AddMyTable2Row(string 学号, string 姓名, string 性别, System.DateTime 出生日期, string 学院编码, int 成绩, byte[] 照片) {
MyTable2Row rowMyTable2Row = ((MyTable2Row)(this.NewRow()));
rowMyTable2Row.ItemArray = new object[] {
学号,
姓名,
性别,
出生日期,
学院编码,
成绩,
照片};
this.Rows.Add(rowMyTable2Row);
return rowMyTable2Row;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public MyTable2Row FindBy学号(string 学号) {
return ((MyTable2Row)(this.Rows.Find(new object[] {
学号})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
MyTable2DataTable cln = ((MyTable2DataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new MyTable2DataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.column学号 = base.Columns["学号"];
this.column姓名 = base.Columns["姓名"];
this.column性别 = base.Columns["性别"];
this.column出生日期 = base.Columns["出生日期"];
this.column学院编码 = base.Columns["学院编码"];
this.column成绩 = base.Columns["成绩"];
this.column照片 = base.Columns["照片"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.column学号 = new System.Data.DataColumn("学号", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column学号);
this.column姓名 = new System.Data.DataColumn("姓名", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column姓名);
this.column性别 = new System.Data.DataColumn("性别", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column性别);
this.column出生日期 = new System.Data.DataColumn("出生日期", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.column出生日期);
this.column学院编码 = new System.Data.DataColumn("学院编码", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column学院编码);
this.column成绩 = new System.Data.DataColumn("成绩", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.column成绩);
this.column照片 = new System.Data.DataColumn("照片", typeof(byte[]), null, System.Data.MappingType.Element);
base.Columns.Add(this.column照片);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.column学号}, true));
this.column学号.AllowDBNull = false;
this.column学号.Unique = true;
this.column学号.MaxLength = 8;
this.column姓名.MaxLength = 50;
this.column性别.MaxLength = 1;
this.column学院编码.MaxLength = 2;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public MyTable2Row NewMyTable2Row() {
return ((MyTable2Row)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new MyTable2Row(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(MyTable2Row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.MyTable2RowChanged != null)) {
this.MyTable2RowChanged(this, new MyTable2RowChangeEvent(((MyTable2Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.MyTable2RowChanging != null)) {
this.MyTable2RowChanging(this, new MyTable2RowChangeEvent(((MyTable2Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.MyTable2RowDeleted != null)) {
this.MyTable2RowDeleted(this, new MyTable2RowChangeEvent(((MyTable2Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.MyTable2RowDeleting != null)) {
this.MyTable2RowDeleting(this, new MyTable2RowChangeEvent(((MyTable2Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveMyTable2Row(MyTable2Row row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
MyDatabaseDataSet ds = new MyDatabaseDataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "MyTable2DataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class MyTable3DataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnid;
private System.Data.DataColumn column学号;
private System.Data.DataColumn column成员姓名;
private System.Data.DataColumn column成员性别;
private System.Data.DataColumn column与本人关系;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public MyTable3DataTable() {
this.TableName = "MyTable3";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal MyTable3DataTable(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;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected MyTable3DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn idColumn {
get {
return this.columnid;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 学号Column {
get {
return this.column学号;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -