📄 productsdataset.designer.cs
字号:
return rowProductCategoryRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ProductCategoryRow FindByProductCategoryID(int ProductCategoryID) {
return ((ProductCategoryRow)(this.Rows.Find(new object[] {
ProductCategoryID})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
ProductCategoryDataTable cln = ((ProductCategoryDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new ProductCategoryDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnProductCategoryID = base.Columns["ProductCategoryID"];
this.columnName = base.Columns["Name"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnProductCategoryID = new System.Data.DataColumn("ProductCategoryID", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnProductCategoryID);
this.columnName = new System.Data.DataColumn("Name", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnName);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnProductCategoryID}, true));
this.columnProductCategoryID.AutoIncrement = true;
this.columnProductCategoryID.AllowDBNull = false;
this.columnProductCategoryID.ReadOnly = true;
this.columnProductCategoryID.Unique = true;
this.columnName.AllowDBNull = false;
this.columnName.MaxLength = 50;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ProductCategoryRow NewProductCategoryRow() {
return ((ProductCategoryRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new ProductCategoryRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(ProductCategoryRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.ProductCategoryRowChanged != null)) {
this.ProductCategoryRowChanged(this, new ProductCategoryRowChangeEvent(((ProductCategoryRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.ProductCategoryRowChanging != null)) {
this.ProductCategoryRowChanging(this, new ProductCategoryRowChangeEvent(((ProductCategoryRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.ProductCategoryRowDeleted != null)) {
this.ProductCategoryRowDeleted(this, new ProductCategoryRowChangeEvent(((ProductCategoryRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.ProductCategoryRowDeleting != null)) {
this.ProductCategoryRowDeleting(this, new ProductCategoryRowChangeEvent(((ProductCategoryRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveProductCategoryRow(ProductCategoryRow 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();
ProductsDataSet ds = new ProductsDataSet();
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 = "ProductCategoryDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
public partial class ProductRow : System.Data.DataRow {
private ProductDataTable tableProduct;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal ProductRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableProduct = ((ProductDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int ProductID {
get {
return ((int)(this[this.tableProduct.ProductIDColumn]));
}
set {
this[this.tableProduct.ProductIDColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Name {
get {
return ((string)(this[this.tableProduct.NameColumn]));
}
set {
this[this.tableProduct.NameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Color {
get {
try {
return ((string)(this[this.tableProduct.ColorColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Color\' in table \'Product\' is DBNull.", e);
}
}
set {
this[this.tableProduct.ColorColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public decimal ListPrice {
get {
return ((decimal)(this[this.tableProduct.ListPriceColumn]));
}
set {
this[this.tableProduct.ListPriceColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Size {
get {
try {
return ((string)(this[this.tableProduct.SizeColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Size\' in table \'Product\' is DBNull.", e);
}
}
set {
this[this.tableProduct.SizeColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int ProductCategoryID {
get {
return ((int)(this[this.tableProduct.ProductCategoryIDColumn]));
}
set {
this[this.tableProduct.ProductCategoryIDColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ProductCategoryRow ProductCategoryRow {
get {
return ((ProductCategoryRow)(this.GetParentRow(this.Table.ParentRelations["Product_ProductCategory_FK"])));
}
set {
this.SetParentRow(value, this.Table.ParentRelations["Product_ProductCategory_FK"]);
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsColorNull() {
return this.IsNull(this.tableProduct.ColorColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetColorNull() {
this[this.tableProduct.ColorColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsSizeNull() {
return this.IsNull(this.tableProduct.SizeColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetSizeNull() {
this[this.tableProduct.SizeColumn] = System.Convert.DBNull;
}
}
public partial class ProductCategoryRow : System.Data.DataRow {
private ProductCategoryDataTable tableProductCategory;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal ProductCategoryRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableProductCategory = ((ProductCategoryDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int ProductCategoryID {
get {
return ((int)(this[this.tableProductCategory.ProductCategoryIDColumn]));
}
set {
this[this.tableProductCategory.ProductCategoryIDColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Name {
get {
return ((string)(this[this.tableProductCategory.NameColumn]));
}
set {
this[this.tableProductCategory.NameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ProductRow[] GetProductRows() {
return ((ProductRow[])(base.GetChildRows(this.Table.ChildRelations["Product_ProductCategory_FK"])));
}
}
public class ProductRowChangeEvent : System.EventArgs {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -