📄 inventorydata.designer.cs
字号:
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.1433
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace DAO
{
using System.Data.Linq;
using System.Data.Linq.Mapping;
using System.Data;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using System.Linq.Expressions;
using System.ComponentModel;
using System;
[System.Data.Linq.Mapping.DatabaseAttribute(Name="DataSourceDB")]
public partial class InventoryDataDataContext : System.Data.Linq.DataContext
{
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
#region Extensibility Method Definitions
partial void OnCreated();
#endregion
public InventoryDataDataContext() :
base(global::System.Configuration.ConfigurationManager.ConnectionStrings["DataSourceDBConnectionString"].ConnectionString, mappingSource)
{
OnCreated();
}
public InventoryDataDataContext(string connection) :
base(connection, mappingSource)
{
OnCreated();
}
public InventoryDataDataContext(System.Data.IDbConnection connection) :
base(connection, mappingSource)
{
OnCreated();
}
public InventoryDataDataContext(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
base(connection, mappingSource)
{
OnCreated();
}
public InventoryDataDataContext(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
base(connection, mappingSource)
{
OnCreated();
}
public System.Data.Linq.Table<InventoryViewInfo> InventoryViewInfos
{
get
{
return this.GetTable<InventoryViewInfo>();
}
}
}
[Table(Name="dbo.View_InventoryOverview")]
public partial class InventoryViewInfo
{
private int _ProductTypeID;
private int _ProductID;
private string _ProductCode;
private string _ProductName;
private string _ProductModule;
private string _ProductColor;
private int _WarehouseID;
private string _WarehouseName;
private decimal _Quantity;
public InventoryViewInfo()
{
}
[Column(Storage="_ProductTypeID", DbType="Int NOT NULL")]
public int ProductTypeID
{
get
{
return this._ProductTypeID;
}
set
{
if ((this._ProductTypeID != value))
{
this._ProductTypeID = value;
}
}
}
[Column(Storage="_ProductID", DbType="Int NOT NULL")]
public int ProductID
{
get
{
return this._ProductID;
}
set
{
if ((this._ProductID != value))
{
this._ProductID = value;
}
}
}
[Column(Storage="_ProductCode", DbType="NVarChar(31) NOT NULL", CanBeNull=false)]
public string ProductCode
{
get
{
return this._ProductCode;
}
set
{
if ((this._ProductCode != value))
{
this._ProductCode = value;
}
}
}
[Column(Storage="_ProductName", DbType="NChar(255) NOT NULL", CanBeNull=false)]
public string ProductName
{
get
{
return this._ProductName;
}
set
{
if ((this._ProductName != value))
{
this._ProductName = value;
}
}
}
[Column(Storage="_ProductModule", DbType="NChar(31) NOT NULL", CanBeNull=false)]
public string ProductModule
{
get
{
return this._ProductModule;
}
set
{
if ((this._ProductModule != value))
{
this._ProductModule = value;
}
}
}
[Column(Storage="_ProductColor", DbType="NChar(7) NOT NULL", CanBeNull=false)]
public string ProductColor
{
get
{
return this._ProductColor;
}
set
{
if ((this._ProductColor != value))
{
this._ProductColor = value;
}
}
}
[Column(Storage="_WarehouseID", DbType="Int NOT NULL")]
public int WarehouseID
{
get
{
return this._WarehouseID;
}
set
{
if ((this._WarehouseID != value))
{
this._WarehouseID = value;
}
}
}
[Column(Storage="_WarehouseName", DbType="NVarChar(15) NOT NULL", CanBeNull=false)]
public string WarehouseName
{
get
{
return this._WarehouseName;
}
set
{
if ((this._WarehouseName != value))
{
this._WarehouseName = value;
}
}
}
[Column(Storage="_Quantity", DbType="Decimal(18,2) NOT NULL")]
public decimal Quantity
{
get
{
return this._Quantity;
}
set
{
if ((this._Quantity != value))
{
this._Quantity = value;
}
}
}
}
}
#pragma warning restore 1591
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -