/trunk/source/Samples/Bindable.Linq.Samples.Basic/AdventureWorksSample/AdventureWorks1.designer.cs
# · C# · 477 lines · 418 code · 50 blank · 9 comment · 34 complexity · af88205f6071a4563127fb736ea99f38 MD5 · raw file
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- // Runtime Version:2.0.50727.1378
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
-
- namespace BindingOriented.SyncLinq.SampleApplication.AdventureWorksSample
- {
- 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="AdventureWorks")]
- public partial class AdventureWorksDataContext : System.Data.Linq.DataContext
- {
-
- private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
-
- #region Extensibility Method Definitions
- partial void OnCreated();
- partial void InsertContact(Contact instance);
- partial void UpdateContact(Contact instance);
- partial void DeleteContact(Contact instance);
- #endregion
-
- static AdventureWorksDataContext()
- {
- }
-
- public AdventureWorksDataContext(string connection) :
- base(connection, mappingSource)
- {
- OnCreated();
- }
-
- public AdventureWorksDataContext(System.Data.IDbConnection connection) :
- base(connection, mappingSource)
- {
- OnCreated();
- }
-
- public AdventureWorksDataContext(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
- base(connection, mappingSource)
- {
- OnCreated();
- }
-
- public AdventureWorksDataContext(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
- base(connection, mappingSource)
- {
- OnCreated();
- }
-
- public AdventureWorksDataContext() :
- base(global::BindingOriented.SyncLinq.SampleApplication.Properties.Settings.Default.AdventureWorksConnectionString, mappingSource)
- {
- OnCreated();
- }
-
- public System.Data.Linq.Table<Contact> Contacts
- {
- get
- {
- return this.GetTable<Contact>();
- }
- }
- }
-
- [Table(Name="Person.Contact")]
- public partial class Contact : INotifyPropertyChanging, INotifyPropertyChanged
- {
-
- private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
-
- private int _ContactID;
-
- private bool _NameStyle;
-
- private string _Title;
-
- private string _FirstName;
-
- private string _MiddleName;
-
- private string _LastName;
-
- private string _Suffix;
-
- private string _EmailAddress;
-
- private int _EmailPromotion;
-
- private string _Phone;
-
- private string _PasswordHash;
-
- private string _PasswordSalt;
-
- private System.Xml.Linq.XDocument _AdditionalContactInfo;
-
- private System.Guid _rowguid;
-
- private System.DateTime _ModifiedDate;
-
- #region Extensibility Method Definitions
- partial void OnLoaded();
- partial void OnValidate();
- partial void OnCreated();
- partial void OnContactIDChanging(int value);
- partial void OnContactIDChanged();
- partial void OnNameStyleChanging(bool value);
- partial void OnNameStyleChanged();
- partial void OnTitleChanging(string value);
- partial void OnTitleChanged();
- partial void OnFirstNameChanging(string value);
- partial void OnFirstNameChanged();
- partial void OnMiddleNameChanging(string value);
- partial void OnMiddleNameChanged();
- partial void OnLastNameChanging(string value);
- partial void OnLastNameChanged();
- partial void OnSuffixChanging(string value);
- partial void OnSuffixChanged();
- partial void OnEmailAddressChanging(string value);
- partial void OnEmailAddressChanged();
- partial void OnEmailPromotionChanging(int value);
- partial void OnEmailPromotionChanged();
- partial void OnPhoneChanging(string value);
- partial void OnPhoneChanged();
- partial void OnPasswordHashChanging(string value);
- partial void OnPasswordHashChanged();
- partial void OnPasswordSaltChanging(string value);
- partial void OnPasswordSaltChanged();
- partial void OnAdditionalContactInfoChanging(System.Xml.Linq.XDocument value);
- partial void OnAdditionalContactInfoChanged();
- partial void OnrowguidChanging(System.Guid value);
- partial void OnrowguidChanged();
- partial void OnModifiedDateChanging(System.DateTime value);
- partial void OnModifiedDateChanged();
- #endregion
-
- public Contact()
- {
- OnCreated();
- }
-
- [Column(Storage="_ContactID", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
- public int ContactID
- {
- get
- {
- return this._ContactID;
- }
- set
- {
- if ((this._ContactID != value))
- {
- this.OnContactIDChanging(value);
- this.SendPropertyChanging();
- this._ContactID = value;
- this.SendPropertyChanged("ContactID");
- this.OnContactIDChanged();
- }
- }
- }
-
- [Column(Storage="_NameStyle", DbType="Bit NOT NULL")]
- public bool NameStyle
- {
- get
- {
- return this._NameStyle;
- }
- set
- {
- if ((this._NameStyle != value))
- {
- this.OnNameStyleChanging(value);
- this.SendPropertyChanging();
- this._NameStyle = value;
- this.SendPropertyChanged("NameStyle");
- this.OnNameStyleChanged();
- }
- }
- }
-
- [Column(Storage="_Title", DbType="NVarChar(8)")]
- public string Title
- {
- get
- {
- return this._Title;
- }
- set
- {
- if ((this._Title != value))
- {
- this.OnTitleChanging(value);
- this.SendPropertyChanging();
- this._Title = value;
- this.SendPropertyChanged("Title");
- this.OnTitleChanged();
- }
- }
- }
-
- [Column(Storage="_FirstName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
- public string FirstName
- {
- get
- {
- return this._FirstName;
- }
- set
- {
- if ((this._FirstName != value))
- {
- this.OnFirstNameChanging(value);
- this.SendPropertyChanging();
- this._FirstName = value;
- this.SendPropertyChanged("FirstName");
- this.OnFirstNameChanged();
- }
- }
- }
-
- [Column(Storage="_MiddleName", DbType="NVarChar(50)")]
- public string MiddleName
- {
- get
- {
- return this._MiddleName;
- }
- set
- {
- if ((this._MiddleName != value))
- {
- this.OnMiddleNameChanging(value);
- this.SendPropertyChanging();
- this._MiddleName = value;
- this.SendPropertyChanged("MiddleName");
- this.OnMiddleNameChanged();
- }
- }
- }
-
- [Column(Storage="_LastName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
- public string LastName
- {
- get
- {
- return this._LastName;
- }
- set
- {
- if ((this._LastName != value))
- {
- this.OnLastNameChanging(value);
- this.SendPropertyChanging();
- this._LastName = value;
- this.SendPropertyChanged("LastName");
- this.OnLastNameChanged();
- }
- }
- }
-
- [Column(Storage="_Suffix", DbType="NVarChar(10)")]
- public string Suffix
- {
- get
- {
- return this._Suffix;
- }
- set
- {
- if ((this._Suffix != value))
- {
- this.OnSuffixChanging(value);
- this.SendPropertyChanging();
- this._Suffix = value;
- this.SendPropertyChanged("Suffix");
- this.OnSuffixChanged();
- }
- }
- }
-
- [Column(Storage="_EmailAddress", DbType="NVarChar(50)")]
- public string EmailAddress
- {
- get
- {
- return this._EmailAddress;
- }
- set
- {
- if ((this._EmailAddress != value))
- {
- this.OnEmailAddressChanging(value);
- this.SendPropertyChanging();
- this._EmailAddress = value;
- this.SendPropertyChanged("EmailAddress");
- this.OnEmailAddressChanged();
- }
- }
- }
-
- [Column(Storage="_EmailPromotion", DbType="Int NOT NULL")]
- public int EmailPromotion
- {
- get
- {
- return this._EmailPromotion;
- }
- set
- {
- if ((this._EmailPromotion != value))
- {
- this.OnEmailPromotionChanging(value);
- this.SendPropertyChanging();
- this._EmailPromotion = value;
- this.SendPropertyChanged("EmailPromotion");
- this.OnEmailPromotionChanged();
- }
- }
- }
-
- [Column(Storage="_Phone", DbType="NVarChar(25)")]
- public string Phone
- {
- get
- {
- return this._Phone;
- }
- set
- {
- if ((this._Phone != value))
- {
- this.OnPhoneChanging(value);
- this.SendPropertyChanging();
- this._Phone = value;
- this.SendPropertyChanged("Phone");
- this.OnPhoneChanged();
- }
- }
- }
-
- [Column(Storage="_PasswordHash", DbType="VarChar(40) NOT NULL", CanBeNull=false)]
- public string PasswordHash
- {
- get
- {
- return this._PasswordHash;
- }
- set
- {
- if ((this._PasswordHash != value))
- {
- this.OnPasswordHashChanging(value);
- this.SendPropertyChanging();
- this._PasswordHash = value;
- this.SendPropertyChanged("PasswordHash");
- this.OnPasswordHashChanged();
- }
- }
- }
-
- [Column(Storage="_PasswordSalt", DbType="VarChar(10) NOT NULL", CanBeNull=false)]
- public string PasswordSalt
- {
- get
- {
- return this._PasswordSalt;
- }
- set
- {
- if ((this._PasswordSalt != value))
- {
- this.OnPasswordSaltChanging(value);
- this.SendPropertyChanging();
- this._PasswordSalt = value;
- this.SendPropertyChanged("PasswordSalt");
- this.OnPasswordSaltChanged();
- }
- }
- }
-
- [Column(Storage="_AdditionalContactInfo", DbType="Xml", UpdateCheck=UpdateCheck.Never)]
- public System.Xml.Linq.XDocument AdditionalContactInfo
- {
- get
- {
- return this._AdditionalContactInfo;
- }
- set
- {
- if ((this._AdditionalContactInfo != value))
- {
- this.OnAdditionalContactInfoChanging(value);
- this.SendPropertyChanging();
- this._AdditionalContactInfo = value;
- this.SendPropertyChanged("AdditionalContactInfo");
- this.OnAdditionalContactInfoChanged();
- }
- }
- }
-
- [Column(Storage="_rowguid", DbType="UniqueIdentifier NOT NULL")]
- public System.Guid rowguid
- {
- get
- {
- return this._rowguid;
- }
- set
- {
- if ((this._rowguid != value))
- {
- this.OnrowguidChanging(value);
- this.SendPropertyChanging();
- this._rowguid = value;
- this.SendPropertyChanged("rowguid");
- this.OnrowguidChanged();
- }
- }
- }
-
- [Column(Storage="_ModifiedDate", DbType="DateTime NOT NULL")]
- public System.DateTime ModifiedDate
- {
- get
- {
- return this._ModifiedDate;
- }
- set
- {
- if ((this._ModifiedDate != value))
- {
- this.OnModifiedDateChanging(value);
- this.SendPropertyChanging();
- this._ModifiedDate = value;
- this.SendPropertyChanged("ModifiedDate");
- this.OnModifiedDateChanged();
- }
- }
- }
-
- public event PropertyChangingEventHandler PropertyChanging;
-
- public event PropertyChangedEventHandler PropertyChanged;
-
- protected virtual void SendPropertyChanging()
- {
- if ((this.PropertyChanging != null))
- {
- this.PropertyChanging(this, emptyChangingEventArgs);
- }
- }
-
- protected virtual void SendPropertyChanged(String propertyName)
- {
- if ((this.PropertyChanged != null))
- {
- this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
- }
- }
- }
- }