1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
|
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace OAuthResourceServer.Code
{
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;
[global::System.Data.Linq.Mapping.DatabaseAttribute(Name="Database")]
public partial class DataClassesDataContext : System.Data.Linq.DataContext
{
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
#region Extensibility Method Definitions
partial void OnCreated();
partial void InsertUser(User instance);
partial void UpdateUser(User instance);
partial void DeleteUser(User instance);
partial void InsertFavoriteSite(FavoriteSite instance);
partial void UpdateFavoriteSite(FavoriteSite instance);
partial void DeleteFavoriteSite(FavoriteSite instance);
#endregion
public DataClassesDataContext() :
base(global::System.Configuration.ConfigurationManager.ConnectionStrings["DatabaseConnectionString"].ConnectionString, mappingSource)
{
OnCreated();
}
public DataClassesDataContext(string connection) :
base(connection, mappingSource)
{
OnCreated();
}
public DataClassesDataContext(System.Data.IDbConnection connection) :
base(connection, mappingSource)
{
OnCreated();
}
public DataClassesDataContext(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
base(connection, mappingSource)
{
OnCreated();
}
public DataClassesDataContext(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
base(connection, mappingSource)
{
OnCreated();
}
public System.Data.Linq.Table<User> Users
{
get
{
return this.GetTable<User>();
}
}
public System.Data.Linq.Table<FavoriteSite> FavoriteSites
{
get
{
return this.GetTable<FavoriteSite>();
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.[User]")]
public partial class User : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private int _UserId;
private string _OpenIDClaimedIdentifier;
private string _OpenIDFriendlyIdentifier;
private string _FullName;
private System.Nullable<int> _Age;
private EntitySet<FavoriteSite> _FavoriteSites;
#region Extensibility Method Definitions
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnUserIdChanging(int value);
partial void OnUserIdChanged();
partial void OnOpenIDClaimedIdentifierChanging(string value);
partial void OnOpenIDClaimedIdentifierChanged();
partial void OnOpenIDFriendlyIdentifierChanging(string value);
partial void OnOpenIDFriendlyIdentifierChanged();
partial void OnFullNameChanging(string value);
partial void OnFullNameChanged();
partial void OnAgeChanging(System.Nullable<int> value);
partial void OnAgeChanged();
#endregion
public User()
{
this._FavoriteSites = new EntitySet<FavoriteSite>(new Action<FavoriteSite>(this.attach_FavoriteSites), new Action<FavoriteSite>(this.detach_FavoriteSites));
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
public int UserId
{
get
{
return this._UserId;
}
set
{
if ((this._UserId != value))
{
this.OnUserIdChanging(value);
this.SendPropertyChanging();
this._UserId = value;
this.SendPropertyChanged("UserId");
this.OnUserIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OpenIDClaimedIdentifier", DbType="NVarChar(150) NOT NULL", CanBeNull=false)]
public string OpenIDClaimedIdentifier
{
get
{
return this._OpenIDClaimedIdentifier;
}
set
{
if ((this._OpenIDClaimedIdentifier != value))
{
this.OnOpenIDClaimedIdentifierChanging(value);
this.SendPropertyChanging();
this._OpenIDClaimedIdentifier = value;
this.SendPropertyChanged("OpenIDClaimedIdentifier");
this.OnOpenIDClaimedIdentifierChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OpenIDFriendlyIdentifier", DbType="NVarChar(150)")]
public string OpenIDFriendlyIdentifier
{
get
{
return this._OpenIDFriendlyIdentifier;
}
set
{
if ((this._OpenIDFriendlyIdentifier != value))
{
this.OnOpenIDFriendlyIdentifierChanging(value);
this.SendPropertyChanging();
this._OpenIDFriendlyIdentifier = value;
this.SendPropertyChanged("OpenIDFriendlyIdentifier");
this.OnOpenIDFriendlyIdentifierChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FullName", DbType="NVarChar(150)", CanBeNull=false)]
public string FullName
{
get
{
return this._FullName;
}
set
{
if ((this._FullName != value))
{
this.OnFullNameChanging(value);
this.SendPropertyChanging();
this._FullName = value;
this.SendPropertyChanged("FullName");
this.OnFullNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Age", DbType="int")]
public System.Nullable<int> Age
{
get
{
return this._Age;
}
set
{
if ((this._Age != value))
{
this.OnAgeChanging(value);
this.SendPropertyChanging();
this._Age = value;
this.SendPropertyChanged("Age");
this.OnAgeChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="User_FavoriteSite", Storage="_FavoriteSites", ThisKey="UserId", OtherKey="UserId")]
public EntitySet<FavoriteSite> FavoriteSites
{
get
{
return this._FavoriteSites;
}
set
{
this._FavoriteSites.Assign(value);
}
}
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));
}
}
private void attach_FavoriteSites(FavoriteSite entity)
{
this.SendPropertyChanging();
entity.User = this;
}
private void detach_FavoriteSites(FavoriteSite entity)
{
this.SendPropertyChanging();
entity.User = null;
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.FavoriteSite")]
public partial class FavoriteSite : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private int _FavoriteSiteId;
private int _UserId;
private string _SiteUrl;
private EntityRef<User> _User;
#region Extensibility Method Definitions
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnFavoriteSiteIdChanging(int value);
partial void OnFavoriteSiteIdChanged();
partial void OnUserIdChanging(int value);
partial void OnUserIdChanged();
partial void OnSiteUrlChanging(string value);
partial void OnSiteUrlChanged();
#endregion
public FavoriteSite()
{
this._User = default(EntityRef<User>);
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FavoriteSiteId", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
public int FavoriteSiteId
{
get
{
return this._FavoriteSiteId;
}
set
{
if ((this._FavoriteSiteId != value))
{
this.OnFavoriteSiteIdChanging(value);
this.SendPropertyChanging();
this._FavoriteSiteId = value;
this.SendPropertyChanged("FavoriteSiteId");
this.OnFavoriteSiteIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="Int NOT NULL")]
public int UserId
{
get
{
return this._UserId;
}
set
{
if ((this._UserId != value))
{
if (this._User.HasLoadedOrAssignedValue)
{
throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
}
this.OnUserIdChanging(value);
this.SendPropertyChanging();
this._UserId = value;
this.SendPropertyChanged("UserId");
this.OnUserIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteUrl", DbType="NVarChar(255) NOT NULL", CanBeNull=false)]
public string SiteUrl
{
get
{
return this._SiteUrl;
}
set
{
if ((this._SiteUrl != value))
{
this.OnSiteUrlChanging(value);
this.SendPropertyChanging();
this._SiteUrl = value;
this.SendPropertyChanged("SiteUrl");
this.OnSiteUrlChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="User_FavoriteSite", Storage="_User", ThisKey="UserId", OtherKey="UserId", IsForeignKey=true, DeleteOnNull=true, DeleteRule="CASCADE")]
public User User
{
get
{
return this._User.Entity;
}
set
{
User previousValue = this._User.Entity;
if (((previousValue != value)
|| (this._User.HasLoadedOrAssignedValue == false)))
{
this.SendPropertyChanging();
if ((previousValue != null))
{
this._User.Entity = null;
previousValue.FavoriteSites.Remove(this);
}
this._User.Entity = value;
if ((value != null))
{
value.FavoriteSites.Add(this);
this._UserId = value.UserId;
}
else
{
this._UserId = default(int);
}
this.SendPropertyChanged("User");
}
}
}
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));
}
}
}
}
#pragma warning restore 1591
|