|
所在文件:TestDataSet.Designer.cs
/// <summary>
///Represents strongly named DataRow class.
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator",
"2.0.0.0")]
public partial class tbl_userRow : global::System.Data.DataRow {
private tbl_userDataTable
tabletbl_user;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal
tbl_userRow(global::System.Data.DataRowBuilder rb) :
base(rb) {
this.tabletbl_user =
((tbl_userDataTable)(this.Table));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string userid {
get {
return
((string)(this[this.tabletbl_user.useridColumn]));
}
set {
this[this.tabletbl_user.useridColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string name {
get {
try {
return
((string)(this[this.tabletbl_user.nameColumn]));
}
catch
(global::System.InvalidCastException e) {
throw new
global::System.Data.StrongTypingException("表“tbl_user”中列“name”的值为 DBNull。", e);
}
}
set {
this[this.tabletbl_user.nameColumn] =
value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string blog {
get {
try {
return
((string)(this[this.tabletbl_user.blogColumn]));
}
catch
(global::System.InvalidCastException e) {
throw new
global::System.Data.StrongTypingException("表“tbl_user”中列“blog”的值为 DBNull。", e);
}
}
set {
this[this.tabletbl_user.blogColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsnameNull() {
return
this.IsNull(this.tabletbl_user.nameColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetnameNull() {
this[this.tabletbl_user.nameColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsblogNull() {
return
this.IsNull(this.tabletbl_user.blogColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetblogNull() {
this[this.tabletbl_user.blogColumn]
= global::System.Convert.DBNull;
}
}
|