File: DynamicDataResources.Designer.cs

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (972 lines) | stat: -rw-r--r-- 46,619 bytes parent folder | download | duplicates (7)
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
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:4.0.30319.16745
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace System.Web.Resources {
    using System;
    
    
    /// <summary>
    ///   A strongly-typed resource class, for looking up localized strings, etc.
    /// </summary>
    // This class was auto-generated by the StronglyTypedResourceBuilder
    // class via a tool like ResGen or Visual Studio.
    // To add or remove a member, edit your .ResX file then rerun ResGen
    // with the /str option, or rebuild your VS project.
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    internal class DynamicDataResources {
        
        private static global::System.Resources.ResourceManager resourceMan;
        
        private static global::System.Globalization.CultureInfo resourceCulture;
        
        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        internal DynamicDataResources() {
        }
        
        /// <summary>
        ///   Returns the cached ResourceManager instance used by this class.
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Resources.ResourceManager ResourceManager {
            get {
                if (object.ReferenceEquals(resourceMan, null)) {
                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("System.Web.Resources.DynamicDataResources", typeof(DynamicDataResources).Assembly);
                    resourceMan = temp;
                }
                return resourceMan;
            }
        }
        
        /// <summary>
        ///   Overrides the current thread's CurrentUICulture property for all
        ///   resource lookups using this strongly typed resource class.
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Globalization.CultureInfo Culture {
            get {
                return resourceCulture;
            }
            set {
                resourceCulture = value;
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to This association has direction {0} and does not support sorting..
        /// </summary>
        internal static string AssociationProvider_DirectionDoesNotSupportSorting {
            get {
                return ResourceManager.GetString("AssociationProvider_DirectionDoesNotSupportSorting", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The given sort column does not belong to this association&apos;s end table..
        /// </summary>
        internal static string AssociationProvider_SortColumnDoesNotBelongToEndTable {
            get {
                return ResourceManager.GetString("AssociationProvider_SortColumnDoesNotBelongToEndTable", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Page cannot be null. Please ensure that this operation is being performed in the context of an ASP.NET request..
        /// </summary>
        internal static string Common_PageCannotBeNull {
            get {
                return ResourceManager.GetString("Common_PageCannotBeNull", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The ControlFilterExpression belonging to &apos;{0}&apos; could not find a control with ID &apos;{1}&apos;. Please check the value of the ControlID property on the ControlFilterExpression..
        /// </summary>
        internal static string ControlFilterExpression_CouldNotFindControlID {
            get {
                return ResourceManager.GetString("ControlFilterExpression_CouldNotFindControlID", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The data control&apos;s control ID..
        /// </summary>
        internal static string DataControlReference_ControlID {
            get {
                return ResourceManager.GetString("DataControlReference_ControlID", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Unable to retrieve table from control &apos;{0}&apos; and a table name could not be inferred from the URL..
        /// </summary>
        internal static string DataSourceUtil_CantDetermineTable {
            get {
                return ResourceManager.GetString("DataSourceUtil_CantDetermineTable", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The &apos;{0}&apos; control &apos;{1}&apos; must have a DataField attribute..
        /// </summary>
        internal static string DynamicControl_ControlMustHaveDateFieldAttribute {
            get {
                return ResourceManager.GetString("DynamicControl_ControlMustHaveDateFieldAttribute", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The DynamicControl/DynamicField needs to exist inside a data control that is bound to a data source that supports Dynamic Data..
        /// </summary>
        internal static string DynamicControl_ControlNeedsToExistInADataControlUsingDynamicDataSource {
            get {
                return ResourceManager.GetString("DynamicControl_ControlNeedsToExistInADataControlUsingDynamicDataSource", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The mode in which to render the FieldTemplate..
        /// </summary>
        internal static string DynamicControl_Mode {
            get {
                return ResourceManager.GetString("DynamicControl_Mode", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Databound.
        /// </summary>
        internal static string DynamicControlDesignRender {
            get {
                return ResourceManager.GetString("DynamicControlDesignRender", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Whether the data should be shown with the DataFormatString formatting applied when in edit mode. If set to true, the data may have to be unformatted before it is updated in the data source..
        /// </summary>
        internal static string DynamicControlFieldCommon_ApplyFormatInEditMode {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_ApplyFormatInEditMode", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Whether the field treats empty strings as null when the value is extracted from the field..
        /// </summary>
        internal static string DynamicControlFieldCommon_ConvertEmptyStringToNull {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_ConvertEmptyStringToNull", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The name of the field in the model to which this field is bound..
        /// </summary>
        internal static string DynamicControlFieldCommon_DataField {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_DataField", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The formatting that is applied to the bound value. For example, &quot;{0:d}&quot; or &quot;{0:c}&quot;..
        /// </summary>
        internal static string DynamicControlFieldCommon_DataFormatString {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_DataFormatString", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Whether the field is HTML encoded when displayed to the user..
        /// </summary>
        internal static string DynamicControlFieldCommon_HtmlEncode {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_HtmlEncode", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The text displayed if the data bound to the field is null..
        /// </summary>
        internal static string DynamicControlFieldCommon_NullDisplayText {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_NullDisplayText", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to An optional UI hint used to load the template to represent this field..
        /// </summary>
        internal static string DynamicControlFieldCommon_UIHint {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_UIHint", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The name of the validation group for which this field should cause validation..
        /// </summary>
        internal static string DynamicControlFieldCommon_ValidationGroup {
            get {
                return ResourceManager.GetString("DynamicControlFieldCommon_ValidationGroup", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The column &apos;{0}&apos; is not compatible with the table &apos;{1}&apos;..
        /// </summary>
        internal static string DynamicControlParameter_DynamicDataSourceColumnNotCompatibleWithTable {
            get {
                return ResourceManager.GetString("DynamicControlParameter_DynamicDataSourceColumnNotCompatibleWithTable", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The control &apos;{0}&apos; cannot be used as a parent control..
        /// </summary>
        internal static string DynamicControlParameter_DynamicDataSourceControlCannotBeUsedAsParent {
            get {
                return ResourceManager.GetString("DynamicControlParameter_DynamicDataSourceControlCannotBeUsedAsParent", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The control &apos;{0}&apos; could not be found..
        /// </summary>
        internal static string DynamicControlParameter_DynamicDataSourceControlNotFound {
            get {
                return ResourceManager.GetString("DynamicControlParameter_DynamicDataSourceControlNotFound", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The DynamicControlParameter has no Name property, which means that you are setting the primary key. However, the control &apos;{0}&apos; is for table &apos;{1}&apos;, which is not compatible with table &apos;{2}&apos;..
        /// </summary>
        internal static string DynamicControlParameter_InvalidPK {
            get {
                return ResourceManager.GetString("DynamicControlParameter_InvalidPK", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The ContextTypeName property of control &apos;{0}&apos; must specify a data context..
        /// </summary>
        internal static string DynamicDataExtensions_ContextTypePropertyOfDynamicDataSourceMustBeSpecified {
            get {
                return ResourceManager.GetString("DynamicDataExtensions_ContextTypePropertyOfDynamicDataSourceMustBeSpecified", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Whether foreign keys should be loaded automatically when executing Linq to SQL queries..
        /// </summary>
        internal static string DynamicDataManager_AutoLoadForeignKeys {
            get {
                return ResourceManager.GetString("DynamicDataManager_AutoLoadForeignKeys", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to A DataControl with ID &apos;{0}&apos; could not be found for the DynamicDataManager to register..
        /// </summary>
        internal static string DynamicDataManager_ControlNotFound {
            get {
                return ResourceManager.GetString("DynamicDataManager_ControlNotFound", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Sets whether the selection may be set from key values in the query string..
        /// </summary>
        internal static string DynamicDataManager_EnableQueryStringSelection {
            get {
                return ResourceManager.GetString("DynamicDataManager_EnableQueryStringSelection", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Only one instance of a DynamicDataManager can be added to the page..
        /// </summary>
        internal static string DynamicDataManager_OnlyOneDynamicDataManager {
            get {
                return ResourceManager.GetString("DynamicDataManager_OnlyOneDynamicDataManager", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Controls of type {0} are not supported..
        /// </summary>
        internal static string DynamicDataManager_UnsupportedControl {
            get {
                return ResourceManager.GetString("DynamicDataManager_UnsupportedControl", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot find an entity template for table &apos;{0}&apos; under the entity template path: &apos;{1}&apos;..
        /// </summary>
        internal static string DynamicEntity_CantFindTemplate {
            get {
                return ResourceManager.GetString("DynamicEntity_CantFindTemplate", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The DynamicEntity control &apos;{0}&apos; needs to exist in a data control that is bound to a data source that supports Dynamic Data..
        /// </summary>
        internal static string DynamicEntity_ControlNeedsToExistInAContextSupportingDynamicData {
            get {
                return ResourceManager.GetString("DynamicEntity_ControlNeedsToExistInAContextSupportingDynamicData", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The mode in which to render the EntityTemplate..
        /// </summary>
        internal static string DynamicEntity_Mode {
            get {
                return ResourceManager.GetString("DynamicEntity_Mode", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Whether to always load a read-only template..
        /// </summary>
        internal static string DynamicField_ReadOnly {
            get {
                return ResourceManager.GetString("DynamicField_ReadOnly", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Determines whether the control validates client input or not. Defaults to inherit from parent..
        /// </summary>
        internal static string DynamicField_ValidateRequestMode {
            get {
                return ResourceManager.GetString("DynamicField_ValidateRequestMode", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The name of the field in the model to which this filter is bound..
        /// </summary>
        internal static string DynamicFilter_DataField {
            get {
                return ResourceManager.GetString("DynamicFilter_DataField", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to An optional UI hint used to load the template to represent this filter..
        /// </summary>
        internal static string DynamicFilter_FilterUIHint {
            get {
                return ResourceManager.GetString("DynamicFilter_FilterUIHint", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The action to generate a URL for..
        /// </summary>
        internal static string DynamicHyperLink_Action {
            get {
                return ResourceManager.GetString("DynamicHyperLink_Action", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The DynamicHyperLink control &apos;{0}&apos; cannot data bind to a null item..
        /// </summary>
        internal static string DynamicHyperLink_CannotBindToNull {
            get {
                return ResourceManager.GetString("DynamicHyperLink_CannotBindToNull", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The DynamicHyperLink control &apos;{0}&apos; could not determine the MetaTable to base the link on. Make sure that the the control is in a page that is in the context of a Dynamic Data route or that the ContextTypeName and TableName properties are set correctly..
        /// </summary>
        internal static string DynamicHyperLink_CannotDetermineTable {
            get {
                return ResourceManager.GetString("DynamicHyperLink_CannotDetermineTable", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The DynamicHyperLink control &apos;{0}&apos; cannot have the properties &apos;TableName&apos; or &apos;ContextTypeName&apos; set when data binding..
        /// </summary>
        internal static string DynamicHyperLink_CannotSetTableAndContextWhenDatabinding {
            get {
                return ResourceManager.GetString("DynamicHyperLink_CannotSetTableAndContextWhenDatabinding", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to An optional ContextTypeName that can be used to associate a MetaModel with the DynamicHyperLink..
        /// </summary>
        internal static string DynamicHyperLink_ContextTypeName {
            get {
                return ResourceManager.GetString("DynamicHyperLink_ContextTypeName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to An optional DataField that can be used in a data binding context to provide which field should be used for the text of the  DynamicHyperLink..
        /// </summary>
        internal static string DynamicHyperLink_DataField {
            get {
                return ResourceManager.GetString("DynamicHyperLink_DataField", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to An optional TableName that can be used to associate a MetaTable with the DynamicHyperLink..
        /// </summary>
        internal static string DynamicHyperLink_TableName {
            get {
                return ResourceManager.GetString("DynamicHyperLink_TableName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to You need to have a DynamicManager control on the page and register your data control with it in order to use a {0}..
        /// </summary>
        internal static string DynamicParameter_NeedExpansion {
            get {
                return ResourceManager.GetString("DynamicParameter_NeedExpansion", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The value is not valid..
        /// </summary>
        internal static string DynamicValidator_CannotConvertValue {
            get {
                return ResourceManager.GetString("DynamicValidator_CannotConvertValue", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Unable to find control id &apos;{0}&apos; referenced by the &apos;ControlToValidate&apos; property of &apos;{1}&apos;..
        /// </summary>
        internal static string DynamicValidator_ControlNotFound {
            get {
                return ResourceManager.GetString("DynamicValidator_ControlNotFound", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The field template folder &apos;{0}&apos; does not exist..
        /// </summary>
        internal static string FieldTemplateFactory_FolderNotFound {
            get {
                return ResourceManager.GetString("FieldTemplateFactory_FolderNotFound", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to &apos;{0}&apos; is not a children column and cannot be used here..
        /// </summary>
        internal static string FieldTemplateUserControl_ColumnIsNotChildren {
            get {
                return ResourceManager.GetString("FieldTemplateUserControl_ColumnIsNotChildren", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to &apos;{0}&apos; is not a foreign key column and cannot be used here..
        /// </summary>
        internal static string FieldTemplateUserControl_ColumnIsNotFK {
            get {
                return ResourceManager.GetString("FieldTemplateUserControl_ColumnIsNotFK", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The field {0} must be a valid date..
        /// </summary>
        internal static string FieldTemplateUserControl_CompareValidationError_Date {
            get {
                return ResourceManager.GetString("FieldTemplateUserControl_CompareValidationError_Date", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The field {0} must be a valid decimal..
        /// </summary>
        internal static string FieldTemplateUserControl_CompareValidationError_Decimal {
            get {
                return ResourceManager.GetString("FieldTemplateUserControl_CompareValidationError_Decimal", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The field {0} must be a valid integer..
        /// </summary>
        internal static string FieldTemplateUserControl_CompareValidationError_Integer {
            get {
                return ResourceManager.GetString("FieldTemplateUserControl_CompareValidationError_Integer", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The column &apos;{0}&apos; in table &apos;{1}&apos; does not have a default filter..
        /// </summary>
        internal static string FilterFactory_ColumnHasNoDefaultFilter {
            get {
                return ResourceManager.GetString("FilterFactory_ColumnHasNoDefaultFilter", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FilterRepeater &apos;{0}&apos; does not specify a context type name and a table name and this information could not be inferred from the URL. Set the ContextTypeName and TableName properties on this control or make sure that the path for this request maps to a registered Dynamic Data Route..
        /// </summary>
        internal static string FilterRepeater_CantInferInformationFromUrl {
            get {
                return ResourceManager.GetString("FilterRepeater_CantInferInformationFromUrl", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FilterRepeater &apos;{0}&apos; does not contain a control of type &apos;{1}&apos; with ID &apos;{2}&apos; in its item templates..
        /// </summary>
        internal static string FilterRepeater_CouldNotFindControlInTemplate {
            get {
                return ResourceManager.GetString("FilterRepeater_CouldNotFindControlInTemplate", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FilterRepeater &apos;{0}&apos; has an invalid context type name &apos;{1}&apos;. Make sure its ContextTypeName property contains a valid context type name..
        /// </summary>
        internal static string FilterRepeater_InvalidContextTypeName {
            get {
                return ResourceManager.GetString("FilterRepeater_InvalidContextTypeName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FilterRepeater &apos;{0}&apos; has an invalid table name &apos;{1}&apos;. Make sure its TableName property contains a valid table name..
        /// </summary>
        internal static string FilterRepeater_InvalidTableName {
            get {
                return ResourceManager.GetString("FilterRepeater_InvalidTableName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FilterRepeater &apos;{0}&apos; is associated with a table but is missing a context type name. Make sure its ContextTypeName property has a valid context type..
        /// </summary>
        internal static string FilterRepeater_MissingContextTypeName {
            get {
                return ResourceManager.GetString("FilterRepeater_MissingContextTypeName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FilterRepeater &apos;{0}&apos; is associated with a context type but is missing the table name. Make sure its TableName property contains a valid table name..
        /// </summary>
        internal static string FilterRepeater_MissingTableName {
            get {
                return ResourceManager.GetString("FilterRepeater_MissingTableName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FilterRepeater &apos;{0}&apos; has an unknown context type name &apos;{1}&apos; that is not registered with any model. Make sure its ContextTypeName property contains a valid context type name that has been registered with a MetaModel..
        /// </summary>
        internal static string FilterRepeater_UnknownContextTypeName {
            get {
                return ResourceManager.GetString("FilterRepeater_UnknownContextTypeName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to false.
        /// </summary>
        internal static string FilterUserControlBase_BooleanFilter_FalseString {
            get {
                return ResourceManager.GetString("FilterUserControlBase_BooleanFilter_FalseString", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to true.
        /// </summary>
        internal static string FilterUserControlBase_BooleanFilter_TrueString {
            get {
                return ResourceManager.GetString("FilterUserControlBase_BooleanFilter_TrueString", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; does not specify a context type name and a table name and this information could not be inferred from the URL. Set the ContextTypeName and TableName properties on this control or make sure that the path for this request maps to a registered Dynamic Data Route..
        /// </summary>
        internal static string FilterUserControlBase_CantInferInformationFromRequestUrl {
            get {
                return ResourceManager.GetString("FilterUserControlBase_CantInferInformationFromRequestUrl", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; has an invalid context type name &apos;{1}&apos;. Make sure its ContextTypeName property contains a valid context type name..
        /// </summary>
        internal static string FilterUserControlBase_InvalidContextTypeName {
            get {
                return ResourceManager.GetString("FilterUserControlBase_InvalidContextTypeName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; has an invalid data field name &apos;{1}&apos;. Make sure its DataField property contains a valid field name..
        /// </summary>
        internal static string FilterUserControlBase_InvalidDataField {
            get {
                return ResourceManager.GetString("FilterUserControlBase_InvalidDataField", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; has an invalid table name &apos;{1}&apos;. Make sure its TableName property contains a valid table name..
        /// </summary>
        internal static string FilterUserControlBase_InvalidTableName {
            get {
                return ResourceManager.GetString("FilterUserControlBase_InvalidTableName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; is associated with a table but is missing the context type name. Make sure its ContextTypeName property contains a valid context type name..
        /// </summary>
        internal static string FilterUserControlBase_MissingContextTypeName {
            get {
                return ResourceManager.GetString("FilterUserControlBase_MissingContextTypeName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; is not associated with a field. Make sure its DataField property contains a valid field name..
        /// </summary>
        internal static string FilterUserControlBase_MissingDataField {
            get {
                return ResourceManager.GetString("FilterUserControlBase_MissingDataField", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; is associated with a context type but is missing the table name. Make sure its TableName property contains a valid table name..
        /// </summary>
        internal static string FilterUserControlBase_MissingTableName {
            get {
                return ResourceManager.GetString("FilterUserControlBase_MissingTableName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; is associated with the &apos;{1}&apos; data field and does not support this operation..
        /// </summary>
        internal static string FilterUserControlBase_SelectedDataKeyNotSupportedForThisField {
            get {
                return ResourceManager.GetString("FilterUserControlBase_SelectedDataKeyNotSupportedForThisField", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; has an unknown context type name &apos;{1}&apos; that is not registered with any model. Make sure its ContextTypeName property contains a valid context type name that has been registered with a MetaModel..
        /// </summary>
        internal static string FilterUserControlBase_UnknownContextType {
            get {
                return ResourceManager.GetString("FilterUserControlBase_UnknownContextType", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The filter control &apos;{0}&apos; does not support this operation because it is associated with an unsupported column &apos;{1}&apos;..
        /// </summary>
        internal static string FilterUserControlBase_UnsupportedDataField {
            get {
                return ResourceManager.GetString("FilterUserControlBase_UnsupportedDataField", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The data context &apos;{0}&apos; has already been registered. Each data context can be registered only once..
        /// </summary>
        internal static string MetadataHandlerRegistration_ContextAlreadyRegistered {
            get {
                return ResourceManager.GetString("MetadataHandlerRegistration_ContextAlreadyRegistered", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The provided data context type &apos;{0}&apos; must inherit from one of the following types: {1}..
        /// </summary>
        internal static string MetadataHandlerRegistration_InvalidDataContextType {
            get {
                return ResourceManager.GetString("MetadataHandlerRegistration_InvalidDataContextType", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The context is of an unknown type {0}..
        /// </summary>
        internal static string MetadataValidator_UnknownContextType {
            get {
                return ResourceManager.GetString("MetadataValidator_UnknownContextType", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The context type &apos;{0}&apos; has already been registered. A context type can only be registered once..
        /// </summary>
        internal static string MetaModel_ContextAlreadyRegistered {
            get {
                return ResourceManager.GetString("MetaModel_ContextAlreadyRegistered", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The context type {0} does not belong to any registered model..
        /// </summary>
        internal static string MetaModel_ContextDoesNotBelongToModel {
            get {
                return ResourceManager.GetString("MetaModel_ContextDoesNotBelongToModel", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The context factory function must return a non-null value..
        /// </summary>
        internal static string MetaModel_ContextFactoryReturnsNull {
            get {
                return ResourceManager.GetString("MetaModel_ContextFactoryReturnsNull", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The context type &apos;{0}&apos; is not supported..
        /// </summary>
        internal static string MetaModel_ContextTypeNotSupported {
            get {
                return ResourceManager.GetString("MetaModel_ContextTypeNotSupported", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The name for entity &apos;{0}&apos; in context &apos;{1}&apos; conflicts with the name for the entity &apos;{2}&apos; in context &apos;{3}&apos;..
        /// </summary>
        internal static string MetaModel_EntityNameConflict {
            get {
                return ResourceManager.GetString("MetaModel_EntityNameConflict", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The name override &apos;{0}&apos; for entity &apos;{1}&apos; in context &apos;{2}&apos; conflicts with the name for the entity &apos;{3}&apos; in context &apos;{4}&apos;..
        /// </summary>
        internal static string MetaModel_EntityNameOverrideConflict {
            get {
                return ResourceManager.GetString("MetaModel_EntityNameOverrideConflict", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The entity type {0} does not belong to any registered model..
        /// </summary>
        internal static string MetaModel_EntityTypeDoesNotBelongToModel {
            get {
                return ResourceManager.GetString("MetaModel_EntityTypeDoesNotBelongToModel", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to An error occurred during model registration and this operation cannot be performed..
        /// </summary>
        internal static string MetaModel_RegistrationErrorOccurred {
            get {
                return ResourceManager.GetString("MetaModel_RegistrationErrorOccurred", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Unknown context type &apos;{0}&apos;. This context type has not been registered..
        /// </summary>
        internal static string MetaModel_UnknownContextType {
            get {
                return ResourceManager.GetString("MetaModel_UnknownContextType", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Unknown entity type &apos;{0}&apos;. This entity type is not part of any registered context..
        /// </summary>
        internal static string MetaModel_UnknownEntityType {
            get {
                return ResourceManager.GetString("MetaModel_UnknownEntityType", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Unknown table name &apos;{0}&apos;..
        /// </summary>
        internal static string MetaModel_UnknownTable {
            get {
                return ResourceManager.GetString("MetaModel_UnknownTable", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The context &apos;{0}&apos; does not have a table with the context-specific name &apos;{1}&apos;..
        /// </summary>
        internal static string MetaModel_UnknownTableInContext {
            get {
                return ResourceManager.GetString("MetaModel_UnknownTableInContext", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot determine table from control. Use the MetaTable.MapControl method to establish an association between a control and a MetaTable instance..
        /// </summary>
        internal static string MetaTable_CannotGetTableFromControl {
            get {
                return ResourceManager.GetString("MetaTable_CannotGetTableFromControl", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot determine table from data source. Use the MetaTable.MapTable method to establish an association between a data source and a MetaTable instance..
        /// </summary>
        internal static string MetaTable_CannotGetTableFromDataSource {
            get {
                return ResourceManager.GetString("MetaTable_CannotGetTableFromDataSource", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot determine table from route. The request did not go through a route or the route is not configured to support ASP.NET Dynamic Data..
        /// </summary>
        internal static string MetaTable_CannotGetTableFromRoute {
            get {
                return ResourceManager.GetString("MetaTable_CannotGetTableFromRoute", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The display column &apos;{0}&apos; specified for the table &apos;{1}&apos; does not exist..
        /// </summary>
        internal static string MetaTable_CantFindDisplayColumn {
            get {
                return ResourceManager.GetString("MetaTable_CantFindDisplayColumn", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The sort column &apos;{0}&apos; specified for the table &apos;{1}&apos; does not exist..
        /// </summary>
        internal static string MetaTable_CantFindSortColumn {
            get {
                return ResourceManager.GetString("MetaTable_CantFindSortColumn", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot use the column &apos;{0}&apos; in table &apos;{1}&apos; as a sort column because it represents a 1-to-many relationship..
        /// </summary>
        internal static string MetaTable_CantUseChildrenColumnAsSortColumn {
            get {
                return ResourceManager.GetString("MetaTable_CantUseChildrenColumnAsSortColumn", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Column &apos;{0}&apos; on table &apos;{1}&apos; conflicts with another column of the same name..
        /// </summary>
        internal static string MetaTable_ColumnNameConflict {
            get {
                return ResourceManager.GetString("MetaTable_ColumnNameConflict", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The naming container must be a control..
        /// </summary>
        internal static string MetaTable_NamingContainerIsNotControl {
            get {
                return ResourceManager.GetString("MetaTable_NamingContainerIsNotControl", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The table &apos;{0}&apos; does not have a column named &apos;{1}&apos;..
        /// </summary>
        internal static string MetaTable_NoSuchColumn {
            get {
                return ResourceManager.GetString("MetaTable_NoSuchColumn", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Could not determine a MetaTable. A MetaTable could not be determined for the data source &apos;{0}&apos; and one could not be inferred from the request URL. Make sure that the table is mapped to the data source, or that the data source is configured with a valid context type and table name, or that the request is part of a registered DynamicDataRoute..
        /// </summary>
        internal static string MetaTableHelper_CantFindTable {
            get {
                return ResourceManager.GetString("MetaTableHelper_CantFindTable", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Unable to convert type &apos;{0}&apos; to &apos;{1}&apos;.
        /// </summary>
        internal static string Misc_CannotConvertType {
            get {
                return ResourceManager.GetString("Misc_CannotConvertType", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The {0} control &apos;{1}&apos; does not have a naming container..
        /// </summary>
        internal static string Misc_NoNamingContainer {
            get {
                return ResourceManager.GetString("Misc_NoNamingContainer", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The virtual path must be a non-empty string..
        /// </summary>
        internal static string QueryStringHandler_VirtualPathCannotBeEmpty {
            get {
                return ResourceManager.GetString("QueryStringHandler_VirtualPathCannotBeEmpty", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Unknown model type {0}..
        /// </summary>
        internal static string SchemaCreator_UnknownModel {
            get {
                return ResourceManager.GetString("SchemaCreator_UnknownModel", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Column must have a type.
        /// </summary>
        internal static string SimpleColumnProvider_ColumnTypeRequired {
            get {
                return ResourceManager.GetString("SimpleColumnProvider_ColumnTypeRequired", resourceCulture);
            }
        }
    }
}