📄 datamembership.designer.cs
字号:
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn ApplicationIdColumn {
get {
return this.columnApplicationId;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn RoleIdColumn {
get {
return this.columnRoleId;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn RoleNameColumn {
get {
return this.columnRoleName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn LoweredRoleNameColumn {
get {
return this.columnLoweredRoleName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn DescriptionColumn {
get {
return this.columnDescription;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public aspnet_RolesRow this[int index] {
get {
return ((aspnet_RolesRow)(this.Rows[index]));
}
}
public event aspnet_RolesRowChangeEventHandler aspnet_RolesRowChanging;
public event aspnet_RolesRowChangeEventHandler aspnet_RolesRowChanged;
public event aspnet_RolesRowChangeEventHandler aspnet_RolesRowDeleting;
public event aspnet_RolesRowChangeEventHandler aspnet_RolesRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Addaspnet_RolesRow(aspnet_RolesRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public aspnet_RolesRow Addaspnet_RolesRow(System.Guid ApplicationId, System.Guid RoleId, string RoleName, string LoweredRoleName, string Description) {
aspnet_RolesRow rowaspnet_RolesRow = ((aspnet_RolesRow)(this.NewRow()));
rowaspnet_RolesRow.ItemArray = new object[] {
ApplicationId,
RoleId,
RoleName,
LoweredRoleName,
Description};
this.Rows.Add(rowaspnet_RolesRow);
return rowaspnet_RolesRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public aspnet_RolesRow FindByApplicationIdLoweredRoleName(System.Guid ApplicationId, string LoweredRoleName) {
return ((aspnet_RolesRow)(this.Rows.Find(new object[] {
ApplicationId,
LoweredRoleName})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
aspnet_RolesDataTable cln = ((aspnet_RolesDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new aspnet_RolesDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnApplicationId = base.Columns["ApplicationId"];
this.columnRoleId = base.Columns["RoleId"];
this.columnRoleName = base.Columns["RoleName"];
this.columnLoweredRoleName = base.Columns["LoweredRoleName"];
this.columnDescription = base.Columns["Description"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnApplicationId = new System.Data.DataColumn("ApplicationId", typeof(System.Guid), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnApplicationId);
this.columnRoleId = new System.Data.DataColumn("RoleId", typeof(System.Guid), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnRoleId);
this.columnRoleName = new System.Data.DataColumn("RoleName", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnRoleName);
this.columnLoweredRoleName = new System.Data.DataColumn("LoweredRoleName", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnLoweredRoleName);
this.columnDescription = new System.Data.DataColumn("Description", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnDescription);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnApplicationId,
this.columnLoweredRoleName}, true));
this.columnApplicationId.AllowDBNull = false;
this.columnRoleId.AllowDBNull = false;
this.columnRoleName.AllowDBNull = false;
this.columnRoleName.MaxLength = 256;
this.columnLoweredRoleName.AllowDBNull = false;
this.columnLoweredRoleName.MaxLength = 256;
this.columnDescription.MaxLength = 256;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public aspnet_RolesRow Newaspnet_RolesRow() {
return ((aspnet_RolesRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new aspnet_RolesRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(aspnet_RolesRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.aspnet_RolesRowChanged != null)) {
this.aspnet_RolesRowChanged(this, new aspnet_RolesRowChangeEvent(((aspnet_RolesRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.aspnet_RolesRowChanging != null)) {
this.aspnet_RolesRowChanging(this, new aspnet_RolesRowChangeEvent(((aspnet_RolesRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.aspnet_RolesRowDeleted != null)) {
this.aspnet_RolesRowDeleted(this, new aspnet_RolesRowChangeEvent(((aspnet_RolesRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.aspnet_RolesRowDeleting != null)) {
this.aspnet_RolesRowDeleting(this, new aspnet_RolesRowChangeEvent(((aspnet_RolesRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Removeaspnet_RolesRow(aspnet_RolesRow 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();
DataMembership ds = new DataMembership();
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 = "aspnet_RolesDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class aspnet_MembershipRow : System.Data.DataRow {
private aspnet_MembershipDataTable tableaspnet_Membership;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal aspnet_MembershipRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableaspnet_Membership = ((aspnet_MembershipDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Guid ApplicationId {
get {
return ((System.Guid)(this[this.tableaspnet_Membership.ApplicationIdColumn]));
}
set {
this[this.tableaspnet_Membership.ApplicationIdColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Guid UserId {
get {
return ((System.Guid)(this[this.tableaspnet_Membership.UserIdColumn]));
}
set {
this[this.tableaspnet_Membership.UserIdColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Password {
get {
return ((string)(this[this.tableaspnet_Membership.PasswordColumn]));
}
set {
this[this.tableaspnet_Membership.PasswordColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int PasswordFormat {
get {
return ((int)(this[this.tableaspnet_Membership.PasswordFormatColumn]));
}
set {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -