/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

  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:2.0.50727.1378
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace BindingOriented.SyncLinq.SampleApplication.AdventureWorksSample
  11. {
  12. using System.Data.Linq;
  13. using System.Data.Linq.Mapping;
  14. using System.Data;
  15. using System.Collections.Generic;
  16. using System.Reflection;
  17. using System.Linq;
  18. using System.Linq.Expressions;
  19. using System.ComponentModel;
  20. using System;
  21. [System.Data.Linq.Mapping.DatabaseAttribute(Name="AdventureWorks")]
  22. public partial class AdventureWorksDataContext : System.Data.Linq.DataContext
  23. {
  24. private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
  25. #region Extensibility Method Definitions
  26. partial void OnCreated();
  27. partial void InsertContact(Contact instance);
  28. partial void UpdateContact(Contact instance);
  29. partial void DeleteContact(Contact instance);
  30. #endregion
  31. static AdventureWorksDataContext()
  32. {
  33. }
  34. public AdventureWorksDataContext(string connection) :
  35. base(connection, mappingSource)
  36. {
  37. OnCreated();
  38. }
  39. public AdventureWorksDataContext(System.Data.IDbConnection connection) :
  40. base(connection, mappingSource)
  41. {
  42. OnCreated();
  43. }
  44. public AdventureWorksDataContext(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
  45. base(connection, mappingSource)
  46. {
  47. OnCreated();
  48. }
  49. public AdventureWorksDataContext(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
  50. base(connection, mappingSource)
  51. {
  52. OnCreated();
  53. }
  54. public AdventureWorksDataContext() :
  55. base(global::BindingOriented.SyncLinq.SampleApplication.Properties.Settings.Default.AdventureWorksConnectionString, mappingSource)
  56. {
  57. OnCreated();
  58. }
  59. public System.Data.Linq.Table<Contact> Contacts
  60. {
  61. get
  62. {
  63. return this.GetTable<Contact>();
  64. }
  65. }
  66. }
  67. [Table(Name="Person.Contact")]
  68. public partial class Contact : INotifyPropertyChanging, INotifyPropertyChanged
  69. {
  70. private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
  71. private int _ContactID;
  72. private bool _NameStyle;
  73. private string _Title;
  74. private string _FirstName;
  75. private string _MiddleName;
  76. private string _LastName;
  77. private string _Suffix;
  78. private string _EmailAddress;
  79. private int _EmailPromotion;
  80. private string _Phone;
  81. private string _PasswordHash;
  82. private string _PasswordSalt;
  83. private System.Xml.Linq.XDocument _AdditionalContactInfo;
  84. private System.Guid _rowguid;
  85. private System.DateTime _ModifiedDate;
  86. #region Extensibility Method Definitions
  87. partial void OnLoaded();
  88. partial void OnValidate();
  89. partial void OnCreated();
  90. partial void OnContactIDChanging(int value);
  91. partial void OnContactIDChanged();
  92. partial void OnNameStyleChanging(bool value);
  93. partial void OnNameStyleChanged();
  94. partial void OnTitleChanging(string value);
  95. partial void OnTitleChanged();
  96. partial void OnFirstNameChanging(string value);
  97. partial void OnFirstNameChanged();
  98. partial void OnMiddleNameChanging(string value);
  99. partial void OnMiddleNameChanged();
  100. partial void OnLastNameChanging(string value);
  101. partial void OnLastNameChanged();
  102. partial void OnSuffixChanging(string value);
  103. partial void OnSuffixChanged();
  104. partial void OnEmailAddressChanging(string value);
  105. partial void OnEmailAddressChanged();
  106. partial void OnEmailPromotionChanging(int value);
  107. partial void OnEmailPromotionChanged();
  108. partial void OnPhoneChanging(string value);
  109. partial void OnPhoneChanged();
  110. partial void OnPasswordHashChanging(string value);
  111. partial void OnPasswordHashChanged();
  112. partial void OnPasswordSaltChanging(string value);
  113. partial void OnPasswordSaltChanged();
  114. partial void OnAdditionalContactInfoChanging(System.Xml.Linq.XDocument value);
  115. partial void OnAdditionalContactInfoChanged();
  116. partial void OnrowguidChanging(System.Guid value);
  117. partial void OnrowguidChanged();
  118. partial void OnModifiedDateChanging(System.DateTime value);
  119. partial void OnModifiedDateChanged();
  120. #endregion
  121. public Contact()
  122. {
  123. OnCreated();
  124. }
  125. [Column(Storage="_ContactID", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
  126. public int ContactID
  127. {
  128. get
  129. {
  130. return this._ContactID;
  131. }
  132. set
  133. {
  134. if ((this._ContactID != value))
  135. {
  136. this.OnContactIDChanging(value);
  137. this.SendPropertyChanging();
  138. this._ContactID = value;
  139. this.SendPropertyChanged("ContactID");
  140. this.OnContactIDChanged();
  141. }
  142. }
  143. }
  144. [Column(Storage="_NameStyle", DbType="Bit NOT NULL")]
  145. public bool NameStyle
  146. {
  147. get
  148. {
  149. return this._NameStyle;
  150. }
  151. set
  152. {
  153. if ((this._NameStyle != value))
  154. {
  155. this.OnNameStyleChanging(value);
  156. this.SendPropertyChanging();
  157. this._NameStyle = value;
  158. this.SendPropertyChanged("NameStyle");
  159. this.OnNameStyleChanged();
  160. }
  161. }
  162. }
  163. [Column(Storage="_Title", DbType="NVarChar(8)")]
  164. public string Title
  165. {
  166. get
  167. {
  168. return this._Title;
  169. }
  170. set
  171. {
  172. if ((this._Title != value))
  173. {
  174. this.OnTitleChanging(value);
  175. this.SendPropertyChanging();
  176. this._Title = value;
  177. this.SendPropertyChanged("Title");
  178. this.OnTitleChanged();
  179. }
  180. }
  181. }
  182. [Column(Storage="_FirstName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
  183. public string FirstName
  184. {
  185. get
  186. {
  187. return this._FirstName;
  188. }
  189. set
  190. {
  191. if ((this._FirstName != value))
  192. {
  193. this.OnFirstNameChanging(value);
  194. this.SendPropertyChanging();
  195. this._FirstName = value;
  196. this.SendPropertyChanged("FirstName");
  197. this.OnFirstNameChanged();
  198. }
  199. }
  200. }
  201. [Column(Storage="_MiddleName", DbType="NVarChar(50)")]
  202. public string MiddleName
  203. {
  204. get
  205. {
  206. return this._MiddleName;
  207. }
  208. set
  209. {
  210. if ((this._MiddleName != value))
  211. {
  212. this.OnMiddleNameChanging(value);
  213. this.SendPropertyChanging();
  214. this._MiddleName = value;
  215. this.SendPropertyChanged("MiddleName");
  216. this.OnMiddleNameChanged();
  217. }
  218. }
  219. }
  220. [Column(Storage="_LastName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
  221. public string LastName
  222. {
  223. get
  224. {
  225. return this._LastName;
  226. }
  227. set
  228. {
  229. if ((this._LastName != value))
  230. {
  231. this.OnLastNameChanging(value);
  232. this.SendPropertyChanging();
  233. this._LastName = value;
  234. this.SendPropertyChanged("LastName");
  235. this.OnLastNameChanged();
  236. }
  237. }
  238. }
  239. [Column(Storage="_Suffix", DbType="NVarChar(10)")]
  240. public string Suffix
  241. {
  242. get
  243. {
  244. return this._Suffix;
  245. }
  246. set
  247. {
  248. if ((this._Suffix != value))
  249. {
  250. this.OnSuffixChanging(value);
  251. this.SendPropertyChanging();
  252. this._Suffix = value;
  253. this.SendPropertyChanged("Suffix");
  254. this.OnSuffixChanged();
  255. }
  256. }
  257. }
  258. [Column(Storage="_EmailAddress", DbType="NVarChar(50)")]
  259. public string EmailAddress
  260. {
  261. get
  262. {
  263. return this._EmailAddress;
  264. }
  265. set
  266. {
  267. if ((this._EmailAddress != value))
  268. {
  269. this.OnEmailAddressChanging(value);
  270. this.SendPropertyChanging();
  271. this._EmailAddress = value;
  272. this.SendPropertyChanged("EmailAddress");
  273. this.OnEmailAddressChanged();
  274. }
  275. }
  276. }
  277. [Column(Storage="_EmailPromotion", DbType="Int NOT NULL")]
  278. public int EmailPromotion
  279. {
  280. get
  281. {
  282. return this._EmailPromotion;
  283. }
  284. set
  285. {
  286. if ((this._EmailPromotion != value))
  287. {
  288. this.OnEmailPromotionChanging(value);
  289. this.SendPropertyChanging();
  290. this._EmailPromotion = value;
  291. this.SendPropertyChanged("EmailPromotion");
  292. this.OnEmailPromotionChanged();
  293. }
  294. }
  295. }
  296. [Column(Storage="_Phone", DbType="NVarChar(25)")]
  297. public string Phone
  298. {
  299. get
  300. {
  301. return this._Phone;
  302. }
  303. set
  304. {
  305. if ((this._Phone != value))
  306. {
  307. this.OnPhoneChanging(value);
  308. this.SendPropertyChanging();
  309. this._Phone = value;
  310. this.SendPropertyChanged("Phone");
  311. this.OnPhoneChanged();
  312. }
  313. }
  314. }
  315. [Column(Storage="_PasswordHash", DbType="VarChar(40) NOT NULL", CanBeNull=false)]
  316. public string PasswordHash
  317. {
  318. get
  319. {
  320. return this._PasswordHash;
  321. }
  322. set
  323. {
  324. if ((this._PasswordHash != value))
  325. {
  326. this.OnPasswordHashChanging(value);
  327. this.SendPropertyChanging();
  328. this._PasswordHash = value;
  329. this.SendPropertyChanged("PasswordHash");
  330. this.OnPasswordHashChanged();
  331. }
  332. }
  333. }
  334. [Column(Storage="_PasswordSalt", DbType="VarChar(10) NOT NULL", CanBeNull=false)]
  335. public string PasswordSalt
  336. {
  337. get
  338. {
  339. return this._PasswordSalt;
  340. }
  341. set
  342. {
  343. if ((this._PasswordSalt != value))
  344. {
  345. this.OnPasswordSaltChanging(value);
  346. this.SendPropertyChanging();
  347. this._PasswordSalt = value;
  348. this.SendPropertyChanged("PasswordSalt");
  349. this.OnPasswordSaltChanged();
  350. }
  351. }
  352. }
  353. [Column(Storage="_AdditionalContactInfo", DbType="Xml", UpdateCheck=UpdateCheck.Never)]
  354. public System.Xml.Linq.XDocument AdditionalContactInfo
  355. {
  356. get
  357. {
  358. return this._AdditionalContactInfo;
  359. }
  360. set
  361. {
  362. if ((this._AdditionalContactInfo != value))
  363. {
  364. this.OnAdditionalContactInfoChanging(value);
  365. this.SendPropertyChanging();
  366. this._AdditionalContactInfo = value;
  367. this.SendPropertyChanged("AdditionalContactInfo");
  368. this.OnAdditionalContactInfoChanged();
  369. }
  370. }
  371. }
  372. [Column(Storage="_rowguid", DbType="UniqueIdentifier NOT NULL")]
  373. public System.Guid rowguid
  374. {
  375. get
  376. {
  377. return this._rowguid;
  378. }
  379. set
  380. {
  381. if ((this._rowguid != value))
  382. {
  383. this.OnrowguidChanging(value);
  384. this.SendPropertyChanging();
  385. this._rowguid = value;
  386. this.SendPropertyChanged("rowguid");
  387. this.OnrowguidChanged();
  388. }
  389. }
  390. }
  391. [Column(Storage="_ModifiedDate", DbType="DateTime NOT NULL")]
  392. public System.DateTime ModifiedDate
  393. {
  394. get
  395. {
  396. return this._ModifiedDate;
  397. }
  398. set
  399. {
  400. if ((this._ModifiedDate != value))
  401. {
  402. this.OnModifiedDateChanging(value);
  403. this.SendPropertyChanging();
  404. this._ModifiedDate = value;
  405. this.SendPropertyChanged("ModifiedDate");
  406. this.OnModifiedDateChanged();
  407. }
  408. }
  409. }
  410. public event PropertyChangingEventHandler PropertyChanging;
  411. public event PropertyChangedEventHandler PropertyChanged;
  412. protected virtual void SendPropertyChanging()
  413. {
  414. if ((this.PropertyChanging != null))
  415. {
  416. this.PropertyChanging(this, emptyChangingEventArgs);
  417. }
  418. }
  419. protected virtual void SendPropertyChanged(String propertyName)
  420. {
  421. if ((this.PropertyChanged != null))
  422. {
  423. this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
  424. }
  425. }
  426. }
  427. }