-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel1.Designer.cs
10293 lines (9591 loc) · 350 KB
/
Model1.Designer.cs
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.Data.EntityClient;
using System.Data.Objects;
using System.Data.Objects.DataClasses;
using System.Linq;
using System.Runtime.Serialization;
using System.Xml.Serialization;
[assembly: EdmSchemaAttribute()]
#region EDM Relationship Metadata
[assembly: EdmRelationshipAttribute("DollyLensModel", "FK_Channel_User_Channel", "Channel", System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(DFISYS.Channel), "Channel_User", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(DFISYS.Channel_User), true)]
[assembly: EdmRelationshipAttribute("DollyLensModel", "FK_Channel_User_Role_Channel_User", "Channel_User", System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(DFISYS.Channel_User), "Channel_User_Role", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(DFISYS.Channel_User_Role), true)]
[assembly: EdmRelationshipAttribute("DollyLensModel", "FK_Channel_User_Users", "User", System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(DFISYS.User), "Channel_User", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(DFISYS.Channel_User), true)]
[assembly: EdmRelationshipAttribute("DollyLensModel", "FK_Channel_User_Role_Roles", "Role", System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(DFISYS.Role), "Channel_User_Role", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(DFISYS.Channel_User_Role), true)]
[assembly: EdmRelationshipAttribute("DollyLensModel", "FK_User_Permission_Channel_User_Role", "Channel_User_Role", System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(DFISYS.Channel_User_Role), "User_Permission", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(DFISYS.User_Permission), true)]
[assembly: EdmRelationshipAttribute("DollyLensModel", "FK_Role_Permission_Role", "Role", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(DFISYS.Role), "Role_Permission", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(DFISYS.Role_Permission), true)]
[assembly: EdmRelationshipAttribute("DollyLensModel", "FK_User_Category_User_Permission", "User_Permission", System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(DFISYS.User_Permission), "User_Category", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(DFISYS.User_Category), true)]
#endregion
namespace DFISYS
{
#region Contexts
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public partial class DollyLensEntities : ObjectContext
{
#region Constructors
/// <summary>
/// Initializes a new DollyLensEntities object using the connection string found in the 'DollyLensEntities' section of the application configuration file.
/// </summary>
public DollyLensEntities() : base("name=DollyLensEntities", "DollyLensEntities")
{
this.ContextOptions.LazyLoadingEnabled = true;
OnContextCreated();
}
/// <summary>
/// Initialize a new DollyLensEntities object.
/// </summary>
public DollyLensEntities(string connectionString) : base(connectionString, "DollyLensEntities")
{
this.ContextOptions.LazyLoadingEnabled = true;
OnContextCreated();
}
/// <summary>
/// Initialize a new DollyLensEntities object.
/// </summary>
public DollyLensEntities(EntityConnection connection) : base(connection, "DollyLensEntities")
{
this.ContextOptions.LazyLoadingEnabled = true;
OnContextCreated();
}
#endregion
#region Partial Methods
partial void OnContextCreated();
#endregion
#region ObjectSet Properties
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Action> Actions
{
get
{
if ((_Actions == null))
{
_Actions = base.CreateObjectSet<Action>("Actions");
}
return _Actions;
}
}
private ObjectSet<Action> _Actions;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Adv_Page_Position> Adv_Page_Position
{
get
{
if ((_Adv_Page_Position == null))
{
_Adv_Page_Position = base.CreateObjectSet<Adv_Page_Position>("Adv_Page_Position");
}
return _Adv_Page_Position;
}
}
private ObjectSet<Adv_Page_Position> _Adv_Page_Position;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Adv_Position> Adv_Position
{
get
{
if ((_Adv_Position == null))
{
_Adv_Position = base.CreateObjectSet<Adv_Position>("Adv_Position");
}
return _Adv_Position;
}
}
private ObjectSet<Adv_Position> _Adv_Position;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Advertisment> Advertisments
{
get
{
if ((_Advertisments == null))
{
_Advertisments = base.CreateObjectSet<Advertisment>("Advertisments");
}
return _Advertisments;
}
}
private ObjectSet<Advertisment> _Advertisments;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<AspNet_SqlCacheTablesForChangeNotification> AspNet_SqlCacheTablesForChangeNotification
{
get
{
if ((_AspNet_SqlCacheTablesForChangeNotification == null))
{
_AspNet_SqlCacheTablesForChangeNotification = base.CreateObjectSet<AspNet_SqlCacheTablesForChangeNotification>("AspNet_SqlCacheTablesForChangeNotification");
}
return _AspNet_SqlCacheTablesForChangeNotification;
}
}
private ObjectSet<AspNet_SqlCacheTablesForChangeNotification> _AspNet_SqlCacheTablesForChangeNotification;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<CacheMonitor_News> CacheMonitor_News
{
get
{
if ((_CacheMonitor_News == null))
{
_CacheMonitor_News = base.CreateObjectSet<CacheMonitor_News>("CacheMonitor_News");
}
return _CacheMonitor_News;
}
}
private ObjectSet<CacheMonitor_News> _CacheMonitor_News;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Category> Categories
{
get
{
if ((_Categories == null))
{
_Categories = base.CreateObjectSet<Category>("Categories");
}
return _Categories;
}
}
private ObjectSet<Category> _Categories;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Channel> Channels
{
get
{
if ((_Channels == null))
{
_Channels = base.CreateObjectSet<Channel>("Channels");
}
return _Channels;
}
}
private ObjectSet<Channel> _Channels;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Channel_User> Channel_User
{
get
{
if ((_Channel_User == null))
{
_Channel_User = base.CreateObjectSet<Channel_User>("Channel_User");
}
return _Channel_User;
}
}
private ObjectSet<Channel_User> _Channel_User;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Channel_User_Role> Channel_User_Role
{
get
{
if ((_Channel_User_Role == null))
{
_Channel_User_Role = base.CreateObjectSet<Channel_User_Role>("Channel_User_Role");
}
return _Channel_User_Role;
}
}
private ObjectSet<Channel_User_Role> _Channel_User_Role;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<ChannelResponse> ChannelResponses
{
get
{
if ((_ChannelResponses == null))
{
_ChannelResponses = base.CreateObjectSet<ChannelResponse>("ChannelResponses");
}
return _ChannelResponses;
}
}
private ObjectSet<ChannelResponse> _ChannelResponses;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Comment> Comments
{
get
{
if ((_Comments == null))
{
_Comments = base.CreateObjectSet<Comment>("Comments");
}
return _Comments;
}
}
private ObjectSet<Comment> _Comments;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<EditionType> EditionTypes
{
get
{
if ((_EditionTypes == null))
{
_EditionTypes = base.CreateObjectSet<EditionType>("EditionTypes");
}
return _EditionTypes;
}
}
private ObjectSet<EditionType> _EditionTypes;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<FeedBack> FeedBacks
{
get
{
if ((_FeedBacks == null))
{
_FeedBacks = base.CreateObjectSet<FeedBack>("FeedBacks");
}
return _FeedBacks;
}
}
private ObjectSet<FeedBack> _FeedBacks;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Gallery> Galleries
{
get
{
if ((_Galleries == null))
{
_Galleries = base.CreateObjectSet<Gallery>("Galleries");
}
return _Galleries;
}
}
private ObjectSet<Gallery> _Galleries;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<MediaObject> MediaObjects
{
get
{
if ((_MediaObjects == null))
{
_MediaObjects = base.CreateObjectSet<MediaObject>("MediaObjects");
}
return _MediaObjects;
}
}
private ObjectSet<MediaObject> _MediaObjects;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<News> News
{
get
{
if ((_News == null))
{
_News = base.CreateObjectSet<News>("News");
}
return _News;
}
}
private ObjectSet<News> _News;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<News_Extension> News_Extension
{
get
{
if ((_News_Extension == null))
{
_News_Extension = base.CreateObjectSet<News_Extension>("News_Extension");
}
return _News_Extension;
}
}
private ObjectSet<News_Extension> _News_Extension;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<News_Media> News_Media
{
get
{
if ((_News_Media == null))
{
_News_Media = base.CreateObjectSet<News_Media>("News_Media");
}
return _News_Media;
}
}
private ObjectSet<News_Media> _News_Media;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<NewsPublished> NewsPublisheds
{
get
{
if ((_NewsPublisheds == null))
{
_NewsPublisheds = base.CreateObjectSet<NewsPublished>("NewsPublisheds");
}
return _NewsPublisheds;
}
}
private ObjectSet<NewsPublished> _NewsPublisheds;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<NewsThread> NewsThreads
{
get
{
if ((_NewsThreads == null))
{
_NewsThreads = base.CreateObjectSet<NewsThread>("NewsThreads");
}
return _NewsThreads;
}
}
private ObjectSet<NewsThread> _NewsThreads;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<NewsType> NewsTypes
{
get
{
if ((_NewsTypes == null))
{
_NewsTypes = base.CreateObjectSet<NewsType>("NewsTypes");
}
return _NewsTypes;
}
}
private ObjectSet<NewsType> _NewsTypes;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Permission> Permissions
{
get
{
if ((_Permissions == null))
{
_Permissions = base.CreateObjectSet<Permission>("Permissions");
}
return _Permissions;
}
}
private ObjectSet<Permission> _Permissions;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Product_Category> Product_Category
{
get
{
if ((_Product_Category == null))
{
_Product_Category = base.CreateObjectSet<Product_Category>("Product_Category");
}
return _Product_Category;
}
}
private ObjectSet<Product_Category> _Product_Category;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Province> Provinces
{
get
{
if ((_Provinces == null))
{
_Provinces = base.CreateObjectSet<Province>("Provinces");
}
return _Provinces;
}
}
private ObjectSet<Province> _Provinces;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Role> Roles
{
get
{
if ((_Roles == null))
{
_Roles = base.CreateObjectSet<Role>("Roles");
}
return _Roles;
}
}
private ObjectSet<Role> _Roles;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Role_Permission> Role_Permission
{
get
{
if ((_Role_Permission == null))
{
_Role_Permission = base.CreateObjectSet<Role_Permission>("Role_Permission");
}
return _Role_Permission;
}
}
private ObjectSet<Role_Permission> _Role_Permission;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<SupportOnline> SupportOnlines
{
get
{
if ((_SupportOnlines == null))
{
_SupportOnlines = base.CreateObjectSet<SupportOnline>("SupportOnlines");
}
return _SupportOnlines;
}
}
private ObjectSet<SupportOnline> _SupportOnlines;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<sysdiagram> sysdiagrams
{
get
{
if ((_sysdiagrams == null))
{
_sysdiagrams = base.CreateObjectSet<sysdiagram>("sysdiagrams");
}
return _sysdiagrams;
}
}
private ObjectSet<sysdiagram> _sysdiagrams;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<TacGiaBaiViet> TacGiaBaiViets
{
get
{
if ((_TacGiaBaiViets == null))
{
_TacGiaBaiViets = base.CreateObjectSet<TacGiaBaiViet>("TacGiaBaiViets");
}
return _TacGiaBaiViets;
}
}
private ObjectSet<TacGiaBaiViet> _TacGiaBaiViets;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Tag> Tags
{
get
{
if ((_Tags == null))
{
_Tags = base.CreateObjectSet<Tag>("Tags");
}
return _Tags;
}
}
private ObjectSet<Tag> _Tags;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<ThreadDetail> ThreadDetails
{
get
{
if ((_ThreadDetails == null))
{
_ThreadDetails = base.CreateObjectSet<ThreadDetail>("ThreadDetails");
}
return _ThreadDetails;
}
}
private ObjectSet<ThreadDetail> _ThreadDetails;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<User> Users
{
get
{
if ((_Users == null))
{
_Users = base.CreateObjectSet<User>("Users");
}
return _Users;
}
}
private ObjectSet<User> _Users;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<User_Category> User_Category
{
get
{
if ((_User_Category == null))
{
_User_Category = base.CreateObjectSet<User_Category>("User_Category");
}
return _User_Category;
}
}
private ObjectSet<User_Category> _User_Category;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<User_History> User_History
{
get
{
if ((_User_History == null))
{
_User_History = base.CreateObjectSet<User_History>("User_History");
}
return _User_History;
}
}
private ObjectSet<User_History> _User_History;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<User_Permission> User_Permission
{
get
{
if ((_User_Permission == null))
{
_User_Permission = base.CreateObjectSet<User_Permission>("User_Permission");
}
return _User_Permission;
}
}
private ObjectSet<User_Permission> _User_Permission;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<UserDetail> UserDetails
{
get
{
if ((_UserDetails == null))
{
_UserDetails = base.CreateObjectSet<UserDetail>("UserDetails");
}
return _UserDetails;
}
}
private ObjectSet<UserDetail> _UserDetails;
#endregion
#region AddTo Methods
/// <summary>
/// Deprecated Method for adding a new object to the Actions EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToActions(Action action)
{
base.AddObject("Actions", action);
}
/// <summary>
/// Deprecated Method for adding a new object to the Adv_Page_Position EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToAdv_Page_Position(Adv_Page_Position adv_Page_Position)
{
base.AddObject("Adv_Page_Position", adv_Page_Position);
}
/// <summary>
/// Deprecated Method for adding a new object to the Adv_Position EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToAdv_Position(Adv_Position adv_Position)
{
base.AddObject("Adv_Position", adv_Position);
}
/// <summary>
/// Deprecated Method for adding a new object to the Advertisments EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToAdvertisments(Advertisment advertisment)
{
base.AddObject("Advertisments", advertisment);
}
/// <summary>
/// Deprecated Method for adding a new object to the AspNet_SqlCacheTablesForChangeNotification EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToAspNet_SqlCacheTablesForChangeNotification(AspNet_SqlCacheTablesForChangeNotification aspNet_SqlCacheTablesForChangeNotification)
{
base.AddObject("AspNet_SqlCacheTablesForChangeNotification", aspNet_SqlCacheTablesForChangeNotification);
}
/// <summary>
/// Deprecated Method for adding a new object to the CacheMonitor_News EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToCacheMonitor_News(CacheMonitor_News cacheMonitor_News)
{
base.AddObject("CacheMonitor_News", cacheMonitor_News);
}
/// <summary>
/// Deprecated Method for adding a new object to the Categories EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToCategories(Category category)
{
base.AddObject("Categories", category);
}
/// <summary>
/// Deprecated Method for adding a new object to the Channels EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToChannels(Channel channel)
{
base.AddObject("Channels", channel);
}
/// <summary>
/// Deprecated Method for adding a new object to the Channel_User EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToChannel_User(Channel_User channel_User)
{
base.AddObject("Channel_User", channel_User);
}
/// <summary>
/// Deprecated Method for adding a new object to the Channel_User_Role EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToChannel_User_Role(Channel_User_Role channel_User_Role)
{
base.AddObject("Channel_User_Role", channel_User_Role);
}
/// <summary>
/// Deprecated Method for adding a new object to the ChannelResponses EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToChannelResponses(ChannelResponse channelResponse)
{
base.AddObject("ChannelResponses", channelResponse);
}
/// <summary>
/// Deprecated Method for adding a new object to the Comments EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToComments(Comment comment)
{
base.AddObject("Comments", comment);
}
/// <summary>
/// Deprecated Method for adding a new object to the EditionTypes EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToEditionTypes(EditionType editionType)
{
base.AddObject("EditionTypes", editionType);
}
/// <summary>
/// Deprecated Method for adding a new object to the FeedBacks EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToFeedBacks(FeedBack feedBack)
{
base.AddObject("FeedBacks", feedBack);
}
/// <summary>
/// Deprecated Method for adding a new object to the Galleries EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToGalleries(Gallery gallery)
{
base.AddObject("Galleries", gallery);
}
/// <summary>
/// Deprecated Method for adding a new object to the MediaObjects EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToMediaObjects(MediaObject mediaObject)
{
base.AddObject("MediaObjects", mediaObject);
}
/// <summary>
/// Deprecated Method for adding a new object to the News EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToNews(News news)
{
base.AddObject("News", news);
}
/// <summary>
/// Deprecated Method for adding a new object to the News_Extension EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToNews_Extension(News_Extension news_Extension)
{
base.AddObject("News_Extension", news_Extension);
}
/// <summary>
/// Deprecated Method for adding a new object to the News_Media EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToNews_Media(News_Media news_Media)
{
base.AddObject("News_Media", news_Media);
}
/// <summary>
/// Deprecated Method for adding a new object to the NewsPublisheds EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToNewsPublisheds(NewsPublished newsPublished)
{
base.AddObject("NewsPublisheds", newsPublished);
}
/// <summary>
/// Deprecated Method for adding a new object to the NewsThreads EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToNewsThreads(NewsThread newsThread)
{
base.AddObject("NewsThreads", newsThread);
}
/// <summary>
/// Deprecated Method for adding a new object to the NewsTypes EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToNewsTypes(NewsType newsType)
{
base.AddObject("NewsTypes", newsType);
}
/// <summary>
/// Deprecated Method for adding a new object to the Permissions EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToPermissions(Permission permission)
{
base.AddObject("Permissions", permission);
}
/// <summary>
/// Deprecated Method for adding a new object to the Product_Category EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToProduct_Category(Product_Category product_Category)
{
base.AddObject("Product_Category", product_Category);
}
/// <summary>
/// Deprecated Method for adding a new object to the Provinces EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToProvinces(Province province)
{
base.AddObject("Provinces", province);
}
/// <summary>
/// Deprecated Method for adding a new object to the Roles EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToRoles(Role role)
{
base.AddObject("Roles", role);
}
/// <summary>
/// Deprecated Method for adding a new object to the Role_Permission EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToRole_Permission(Role_Permission role_Permission)
{
base.AddObject("Role_Permission", role_Permission);
}
/// <summary>
/// Deprecated Method for adding a new object to the SupportOnlines EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToSupportOnlines(SupportOnline supportOnline)
{
base.AddObject("SupportOnlines", supportOnline);
}
/// <summary>
/// Deprecated Method for adding a new object to the sysdiagrams EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddTosysdiagrams(sysdiagram sysdiagram)
{
base.AddObject("sysdiagrams", sysdiagram);
}
/// <summary>
/// Deprecated Method for adding a new object to the TacGiaBaiViets EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToTacGiaBaiViets(TacGiaBaiViet tacGiaBaiViet)
{
base.AddObject("TacGiaBaiViets", tacGiaBaiViet);
}
/// <summary>
/// Deprecated Method for adding a new object to the Tags EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToTags(Tag tag)
{
base.AddObject("Tags", tag);
}
/// <summary>
/// Deprecated Method for adding a new object to the ThreadDetails EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToThreadDetails(ThreadDetail threadDetail)
{
base.AddObject("ThreadDetails", threadDetail);
}
/// <summary>
/// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToUsers(User user)
{
base.AddObject("Users", user);
}
/// <summary>
/// Deprecated Method for adding a new object to the User_Category EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToUser_Category(User_Category user_Category)
{
base.AddObject("User_Category", user_Category);
}
/// <summary>
/// Deprecated Method for adding a new object to the User_History EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToUser_History(User_History user_History)
{
base.AddObject("User_History", user_History);
}
/// <summary>
/// Deprecated Method for adding a new object to the User_Permission EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToUser_Permission(User_Permission user_Permission)
{
base.AddObject("User_Permission", user_Permission);
}
/// <summary>
/// Deprecated Method for adding a new object to the UserDetails EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToUserDetails(UserDetail userDetail)
{
base.AddObject("UserDetails", userDetail);
}
#endregion
}
#endregion
#region Entities
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmEntityTypeAttribute(NamespaceName="DollyLensModel", Name="Action")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Action : EntityObject
{
#region Factory Method
/// <summary>
/// Create a new Action object.
/// </summary>
/// <param name="comment_ID">Initial value of the Comment_ID property.</param>
/// <param name="news_ID">Initial value of the News_ID property.</param>
/// <param name="sender_ID">Initial value of the Sender_ID property.</param>
public static Action CreateAction(global::System.Int32 comment_ID, global::System.Int64 news_ID, global::System.String sender_ID)
{
Action action = new Action();
action.Comment_ID = comment_ID;
action.News_ID = news_ID;