📄 sda.cs
字号:
internal DataColumn 电话Column {
get {
return this.column电话;
}
}
internal DataColumn 邮箱Column {
get {
return this.column邮箱;
}
}
internal DataColumn 家庭地址Column {
get {
return this.column家庭地址;
}
}
public _TableRow this[int index] {
get {
return ((_TableRow)(this.Rows[index]));
}
}
public event _TableRowChangeEventHandler _TableRowChanged;
public event _TableRowChangeEventHandler _TableRowChanging;
public event _TableRowChangeEventHandler _TableRowDeleted;
public event _TableRowChangeEventHandler _TableRowDeleting;
public void Add_TableRow(_TableRow row) {
this.Rows.Add(row);
}
public _TableRow Add_TableRow(string myimname, System.Byte[] myimdata, string myimtype, string 姓名, string 性别, string 出生年月, string 籍贯, string 种族, string 政治面貌, string 学历, string 职务, string 电话, string 邮箱, string 家庭地址) {
_TableRow row_TableRow = ((_TableRow)(this.NewRow()));
row_TableRow.ItemArray = new object[] {
null,
myimname,
myimdata,
myimtype,
姓名,
性别,
出生年月,
籍贯,
种族,
政治面貌,
学历,
职务,
电话,
邮箱,
家庭地址};
this.Rows.Add(row_TableRow);
return row_TableRow;
}
public _TableRow FindByids(int ids) {
return ((_TableRow)(this.Rows.Find(new object[] {
ids})));
}
public System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
public override DataTable Clone() {
_TableDataTable cln = ((_TableDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
protected override DataTable CreateInstance() {
return new _TableDataTable();
}
internal void InitVars() {
this.columnids = this.Columns["ids"];
this.columnmyimname = this.Columns["myimname"];
this.columnmyimdata = this.Columns["myimdata"];
this.columnmyimtype = this.Columns["myimtype"];
this.column姓名 = this.Columns["姓名"];
this.column性别 = this.Columns["性别"];
this.column出生年月 = this.Columns["出生年月"];
this.column籍贯 = this.Columns["籍贯"];
this.column种族 = this.Columns["种族"];
this.column政治面貌 = this.Columns["政治面貌"];
this.column学历 = this.Columns["学历"];
this.column职务 = this.Columns["职务"];
this.column电话 = this.Columns["电话"];
this.column邮箱 = this.Columns["邮箱"];
this.column家庭地址 = this.Columns["家庭地址"];
}
private void InitClass() {
this.columnids = new DataColumn("ids", typeof(int), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnids);
this.columnmyimname = new DataColumn("myimname", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnmyimname);
this.columnmyimdata = new DataColumn("myimdata", typeof(System.Byte[]), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnmyimdata);
this.columnmyimtype = new DataColumn("myimtype", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnmyimtype);
this.column姓名 = new DataColumn("姓名", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column姓名);
this.column性别 = new DataColumn("性别", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column性别);
this.column出生年月 = new DataColumn("出生年月", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column出生年月);
this.column籍贯 = new DataColumn("籍贯", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column籍贯);
this.column种族 = new DataColumn("种族", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column种族);
this.column政治面貌 = new DataColumn("政治面貌", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column政治面貌);
this.column学历 = new DataColumn("学历", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column学历);
this.column职务 = new DataColumn("职务", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column职务);
this.column电话 = new DataColumn("电话", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column电话);
this.column邮箱 = new DataColumn("邮箱", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column邮箱);
this.column家庭地址 = new DataColumn("家庭地址", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column家庭地址);
this.Constraints.Add(new UniqueConstraint("Constraint1", new DataColumn[] {
this.columnids}, true));
this.columnids.AutoIncrement = true;
this.columnids.AllowDBNull = false;
this.columnids.ReadOnly = true;
this.columnids.Unique = true;
}
public _TableRow New_TableRow() {
return ((_TableRow)(this.NewRow()));
}
protected override DataRow NewRowFromBuilder(DataRowBuilder builder) {
return new _TableRow(builder);
}
protected override System.Type GetRowType() {
return typeof(_TableRow);
}
protected override void OnRowChanged(DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this._TableRowChanged != null)) {
this._TableRowChanged(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
protected override void OnRowChanging(DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this._TableRowChanging != null)) {
this._TableRowChanging(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
protected override void OnRowDeleted(DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this._TableRowDeleted != null)) {
this._TableRowDeleted(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
protected override void OnRowDeleting(DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this._TableRowDeleting != null)) {
this._TableRowDeleting(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
public void Remove_TableRow(_TableRow row) {
this.Rows.Remove(row);
}
}
[System.Diagnostics.DebuggerStepThrough()]
public class _TableRow : DataRow {
private _TableDataTable table_Table;
internal _TableRow(DataRowBuilder rb) :
base(rb) {
this.table_Table = ((_TableDataTable)(this.Table));
}
public int ids {
get {
return ((int)(this[this.table_Table.idsColumn]));
}
set {
this[this.table_Table.idsColumn] = value;
}
}
public string myimname {
get {
try {
return ((string)(this[this.table_Table.myimnameColumn]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table_Table.myimnameColumn] = value;
}
}
public System.Byte[] myimdata {
get {
try {
return ((System.Byte[])(this[this.table_Table.myimdataColumn]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table_Table.myimdataColumn] = value;
}
}
public string myimtype {
get {
try {
return ((string)(this[this.table_Table.myimtypeColumn]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table_Table.myimtypeColumn] = value;
}
}
public string 姓名 {
get {
try {
return ((string)(this[this.table_Table.姓名Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table_Table.姓名Column] = value;
}
}
public string 性别 {
get {
try {
return ((string)(this[this.table_Table.性别Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table_Table.性别Column] = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -