-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathStrings.Designer.cs
More file actions
7501 lines (6670 loc) · 308 KB
/
Strings.Designer.cs
File metadata and controls
7501 lines (6670 loc) · 308 KB
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 by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Xtensive {
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", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Strings() {
}
/// <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("Xtensive.Strings", typeof(Strings).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 Culture.
/// </summary>
internal static string _Culture {
get {
return ResourceManager.GetString("_Culture", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Actual Model.
/// </summary>
internal static string ActualModel {
get {
return ResourceManager.GetString("ActualModel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Actual target model.
/// </summary>
internal static string ActualTargetModel {
get {
return ResourceManager.GetString("ActualTargetModel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to *.
/// </summary>
internal static string AnyCulture {
get {
return ResourceManager.GetString("AnyCulture", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Applying rule '{0}' to '{1}'.
/// </summary>
internal static string ApplyingRuleXToY {
get {
return ResourceManager.GetString("ApplyingRuleXToY", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Associations.
/// </summary>
internal static string Associations {
get {
return ResourceManager.GetString("Associations", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Box({0}).
/// </summary>
internal static string BoxFormat {
get {
return ResourceManager.GetString("BoxFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cached({0}).
/// </summary>
internal static string CachedFormat {
get {
return ResourceManager.GetString("CachedFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Column: {0};.
/// </summary>
internal static string ColumnX {
get {
return ResourceManager.GetString("ColumnX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to , .
/// </summary>
internal static string Comma {
get {
return ResourceManager.GetString("Comma", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ComparisonRule({0}, {1}).
/// </summary>
internal static string ComparisonRuleFormat {
get {
return ResourceManager.GetString("ComparisonRuleFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ComparisonRules({0}, [{1}]).
/// </summary>
internal static string ComparisonRulesFormat {
get {
return ResourceManager.GetString("ComparisonRulesFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0,6:F2}s @{1,-5} {2,5} {3,-24} {4}{5}.
/// </summary>
internal static string ComprehensiveLogFormat {
get {
return ResourceManager.GetString("ComprehensiveLogFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Constraint: {0};.
/// </summary>
internal static string ConstraintX {
get {
return ResourceManager.GetString("ConstraintX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom Definitions.
/// </summary>
internal static string CustomDefinitions {
get {
return ResourceManager.GetString("CustomDefinitions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Database: {0};.
/// </summary>
internal static string DatabaseX {
get {
return ResourceManager.GetString("DatabaseX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Difference.
/// </summary>
internal static string Difference {
get {
return ResourceManager.GetString("Difference", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to "{1}" != "{2}" ({0}): {3}.
/// </summary>
internal static string DifferenceFormat {
get {
return ResourceManager.GetString("DifferenceFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to +{0}: .
/// </summary>
internal static string DifferencePropertyNamePrefix {
get {
return ResourceManager.GetString("DifferencePropertyNamePrefix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ''.
/// </summary>
internal static string EmptyString {
get {
return ResourceManager.GetString("EmptyString", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Entire({0}).
/// </summary>
internal static string EntireFormat {
get {
return ResourceManager.GetString("EntireFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Key = '{0}', Tuple = {1}, State = {2}.
/// </summary>
internal static string EntityStateFormat {
get {
return ResourceManager.GetString("EntityStateFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Entity with Key = '{0}' does not exist..
/// </summary>
internal static string EntityWithKeyXDoesNotExist {
get {
return ResourceManager.GetString("EntityWithKeyXDoesNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Entity: {0};.
/// </summary>
internal static string EntityX {
get {
return ResourceManager.GetString("EntityX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Active Session is required for this operation. Use Session.Open(...) to open it..
/// </summary>
internal static string ExActiveSessionIsRequiredForThisOperation {
get {
return ResourceManager.GetString("ExActiveSessionIsRequiredForThisOperation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Active transaction is no longer usable..
/// </summary>
internal static string ExActiveTransactionIsNoLongerUsable {
get {
return ResourceManager.GetString("ExActiveTransactionIsNoLongerUsable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Active Transaction is required for this operation. Use Session.OpenTransaction(...) to open it..
/// </summary>
internal static string ExActiveTransactionIsRequiredForThisOperationUseSessionOpenTransactionToOpenIt {
get {
return ResourceManager.GetString("ExActiveTransactionIsRequiredForThisOperationUseSessionOpenTransactionToOpenIt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to translate '{0}' expression. Aggregate method '{1} is not supported..
/// </summary>
internal static string ExAggregateMethodXIsNotSupported {
get {
return ResourceManager.GetString("ExAggregateMethodXIsNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to translate '{0}' expression. Aggregates for non primitive types are not supported..
/// </summary>
internal static string ExAggregatesForNonPrimitiveTypesAreNotSupported {
get {
return ResourceManager.GetString("ExAggregatesForNonPrimitiveTypesAreNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Aggregate '{0}' is not supported for type '{1}'.
/// </summary>
internal static string ExAggregateXIsNotSupportedForTypeY {
get {
return ResourceManager.GetString("ExAggregateXIsNotSupportedForTypeY", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'All' method is only supported for root expressions or subqueries..
/// </summary>
internal static string ExAllMethodIsOnlySupportedForRootExpressionsOrSubqueries {
get {
return ResourceManager.GetString("ExAllMethodIsOnlySupportedForRootExpressionsOrSubqueries", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Object is already disposed..
/// </summary>
internal static string ExAlreadyDisposed {
get {
return ResourceManager.GetString("ExAlreadyDisposed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Instance is already initialized..
/// </summary>
internal static string ExAlreadyInitialized {
get {
return ResourceManager.GetString("ExAlreadyInitialized", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'Any' method is only supported for root expressions or subqueries..
/// </summary>
internal static string ExAnyMethodIsOnlySupportedForRootExpressionsOrSubqueries {
get {
return ResourceManager.GetString("ExAnyMethodIsOnlySupportedForRootExpressionsOrSubqueries", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument can't be an empty string..
/// </summary>
internal static string ExArgumentCannotBeEmptyString {
get {
return ResourceManager.GetString("ExArgumentCannotBeEmptyString", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument cannot be white spaces only string..
/// </summary>
internal static string ExArgumentCannotBeWhiteSpacesOnlyString {
get {
return ResourceManager.GetString("ExArgumentCannotBeWhiteSpacesOnlyString", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid argument: Argument {0} cannot contain '{1}' characters..
/// </summary>
internal static string ExArgumentContainsInvalidCharacters {
get {
return ResourceManager.GetString("ExArgumentContainsInvalidCharacters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument must be greater than '{0}'.
/// </summary>
internal static string ExArgumentMustBeGreaterThanX {
get {
return ResourceManager.GetString("ExArgumentMustBeGreaterThanX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument must be greater that or equal '{0}'.
/// </summary>
internal static string ExArgumentMustBeGreaterThatOrEqualX {
get {
return ResourceManager.GetString("ExArgumentMustBeGreaterThatOrEqualX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument must be less than or equal '{0}'.
/// </summary>
internal static string ExArgumentMustBeLessThanOrEqualX {
get {
return ResourceManager.GetString("ExArgumentMustBeLessThanOrEqualX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument must be less than '{0}'.
/// </summary>
internal static string ExArgumentMustBeLessThanX {
get {
return ResourceManager.GetString("ExArgumentMustBeLessThanX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The argument must not be of type '{0}'..
/// </summary>
internal static string ExArgumentMustnotBeOfTypeX {
get {
return ResourceManager.GetString("ExArgumentMustnotBeOfTypeX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument should be in range [{0}...{1}]..
/// </summary>
internal static string ExArgumentShouldBeInRange {
get {
return ResourceManager.GetString("ExArgumentShouldBeInRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument value must be greater than or equal to zero..
/// </summary>
internal static string ExArgumentValueMustBeGreaterThanOrEqualToZero {
get {
return ResourceManager.GetString("ExArgumentValueMustBeGreaterThanOrEqualToZero", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument value must be greater than zero..
/// </summary>
internal static string ExArgumentValueMustBeGreaterThanZero {
get {
return ResourceManager.GetString("ExArgumentValueMustBeGreaterThanZero", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The argument '{0}' is less than the argument '{1}'..
/// </summary>
internal static string ExArgumentXIsLessThanArgumentY {
get {
return ResourceManager.GetString("ExArgumentXIsLessThanArgumentY", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Array does not have zero-based indexing..
/// </summary>
internal static string ExArrayDoesNotHaveZeroBasedIndexing {
get {
return ResourceManager.GetString("ExArrayDoesNotHaveZeroBasedIndexing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Array is multidimentional..
/// </summary>
internal static string ExArrayIsMultidimensional {
get {
return ResourceManager.GetString("ExArrayIsMultidimensional", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A set of exceptions is caught..
/// </summary>
internal static string ExASetOfExceptionsIsCaught {
get {
return ResourceManager.GetString("ExASetOfExceptionsIsCaught", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'as' operator supports casting only inside Entity hierarchy..
/// </summary>
internal static string ExAsOperatorSupportsEntityOnly {
get {
return ResourceManager.GetString("ExAsOperatorSupportsEntityOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assembly version mismatch: main assembly '{0} {1}', extension assembly '{2} {3}'..
/// </summary>
internal static string ExAssemblyVersionMismatchMainAssemblyXYExtensionsAssemblyAB {
get {
return ResourceManager.GetString("ExAssemblyVersionMismatchMainAssemblyXYExtensionsAssemblyAB", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'AssociationAttribute' can't be applied to '{0}' field..
/// </summary>
internal static string ExAssociationAttributeCanNotBeAppliedToXField {
get {
return ResourceManager.GetString("ExAssociationAttributeCanNotBeAppliedToXField", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to At least one column index pair must be specified..
/// </summary>
internal static string ExAtLeastOneColumnIndexPairMustBeSpecified {
get {
return ResourceManager.GetString("ExAtLeastOneColumnIndexPairMustBeSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to At least one loop have been found in persistent type dependencies graph. Suspicious types: {0}.
/// </summary>
internal static string ExAtLeastOneLoopHaveBeenFoundInPersistentTypeDependenciesGraphSuspiciousTypesX {
get {
return ResourceManager.GetString("ExAtLeastOneLoopHaveBeenFoundInPersistentTypeDependenciesGraphSuspiciousTypesX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An attempt to automatically activate Session '{0}' inside Session '{1}' (Session switching) is blocked.
///Most likely, mixed usage of objects from different Sessions is a result of a bug in your code.
///Use manual Session activation (Session.Deactivate(), Session.Activate()) or
///SessionOptions.AllowSwitching flag to avoid this exception, if this is intentional..
/// </summary>
internal static string ExAttemptToAutomaticallyActivateSessionXInsideSessionYIsBlocked {
get {
return ResourceManager.GetString("ExAttemptToAutomaticallyActivateSessionXInsideSessionYIsBlocked", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Binary expressions with NodeType = 'ExpressionType.{0}' aren't supported..
/// </summary>
internal static string ExBinaryExpressionsWithNodeTypeXAreNotSupported {
get {
return ResourceManager.GetString("ExBinaryExpressionsWithNodeTypeXAreNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Binary expression '{0}' of type '{1}' is not supported..
/// </summary>
internal static string ExBinaryExpressionXOfTypeXIsNotSupported {
get {
return ResourceManager.GetString("ExBinaryExpressionXOfTypeXIsNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Binding has failed for {0}. Check property declaration..
/// </summary>
internal static string ExBindingFailedForX {
get {
return ResourceManager.GetString("ExBindingFailedForX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both left and right part of binary expression '{0}' are NULL or not EntityExpression(EntityFieldExpression)..
/// </summary>
internal static string ExBothLeftAndRightPartOfBinaryExpressionXAreNULLOrNotEntityExpressionEntityFieldExpression {
get {
return ResourceManager.GetString("ExBothLeftAndRightPartOfBinaryExpressionXAreNULLOrNotEntityExpressionEntityFieldE" +
"xpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both left and right part of binary expression '{0}' are NULL or not KeyExpression..
/// </summary>
internal static string ExBothLeftAndRightPartOfBinaryExpressionXAreNULLOrNotKeyExpression {
get {
return ResourceManager.GetString("ExBothLeftAndRightPartOfBinaryExpressionXAreNULLOrNotKeyExpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both left and right part of binary expression '{0}' are NULL or not StructureExpression..
/// </summary>
internal static string ExBothLeftAndRightPartOfBinaryExpressionXAreNULLOrNotStructureExpression {
get {
return ResourceManager.GetString("ExBothLeftAndRightPartOfBinaryExpressionXAreNULLOrNotStructureExpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both parts of binary expression '{0}' are of the different type. Use type cast..
/// </summary>
internal static string ExBothPartsOfBinaryExpressionXAreOfTheDifferentType {
get {
return ResourceManager.GetString("ExBothPartsOfBinaryExpressionXAreOfTheDifferentType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both Source and Target are null..
/// </summary>
internal static string ExBothSourceAndTargetAreNull {
get {
return ResourceManager.GetString("ExBothSourceAndTargetAreNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't activate service '{0}'. Error: {1}.
/// </summary>
internal static string ExCannotActivateServiceXErrorY {
get {
return ResourceManager.GetString("ExCannotActivateServiceXErrorY", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't activate service '{0}' with name "{1}". Error: {2}.
/// </summary>
internal static string ExCannotActivateServiceXWithKeyYErrorZ {
get {
return ResourceManager.GetString("ExCannotActivateServiceXWithKeyYErrorZ", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot apply node configuration: connection is already in use. This may happen if the session was open asynchronously. Use new StorageNode.OpenSession(...) API instead of Session.SelectStorageNode(...).
/// </summary>
internal static string ExCannotApplyNodeConfigurationSettingsConnectionIsInUse {
get {
return ResourceManager.GetString("ExCannotApplyNodeConfigurationSettingsConnectionIsInUse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Attempt to associate non-empty EntityState with Key of unknown type..
/// </summary>
internal static string ExCannotAssociateNonEmptyEntityStateWithKeyOfUnknownType {
get {
return ResourceManager.GetString("ExCannotAssociateNonEmptyEntityStateWithKeyOfUnknownType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not commit a transaction. Entities validation failed..
/// </summary>
internal static string ExCanNotCommitATransactionEntitiesValidationFailed {
get {
return ResourceManager.GetString("ExCanNotCommitATransactionEntitiesValidationFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't compile - active CompilationContext has no Compiler (Compiler is null)..
/// </summary>
internal static string ExCanNotCompileNoCompiler {
get {
return ResourceManager.GetString("ExCanNotCompileNoCompiler", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not complete outer transaction: inner transaction is active..
/// </summary>
internal static string ExCanNotCompleteOuterTransactionInnerTransactionIsActive {
get {
return ResourceManager.GetString("ExCanNotCompleteOuterTransactionInnerTransactionIsActive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't extract foreign key..
/// </summary>
internal static string ExCanNotExtractForeignKey {
get {
return ResourceManager.GetString("ExCanNotExtractForeignKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't find a constructor to execute {0}..
/// </summary>
internal static string ExCannotFindConstructorToExecuteX {
get {
return ResourceManager.GetString("ExCannotFindConstructorToExecuteX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find a handler of type '{0}'..
/// </summary>
internal static string ExCannotFindHandlerOfTypeX {
get {
return ResourceManager.GetString("ExCannotFindHandlerOfTypeX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't generate next version value of type '{0}'..
/// </summary>
internal static string ExCannotGenerateNextVersionValueOfTypeX {
get {
return ResourceManager.GetString("ExCannotGenerateNextVersionValueOfTypeX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not persist: there are pinned entities..
/// </summary>
internal static string ExCanNotPersistThereArePinnedEntities {
get {
return ResourceManager.GetString("ExCanNotPersistThereArePinnedEntities", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not read database and schema names.
/// </summary>
internal static string ExCanNotReadDatabaseAndSchemaNames {
get {
return ResourceManager.GetString("ExCanNotReadDatabaseAndSchemaNames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot resolve entity with key '{0}'..
/// </summary>
internal static string ExCannotResolveEntityWithKeyX {
get {
return ResourceManager.GetString("ExCannotResolveEntityWithKeyX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not reuse opened transaction: requested isolation level is different..
/// </summary>
internal static string ExCanNotReuseOpenedTransactionRequestedIsolationLevelIsDifferent {
get {
return ResourceManager.GetString("ExCanNotReuseOpenedTransactionRequestedIsolationLevelIsDifferent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't compile the provider '{0}'..
/// </summary>
internal static string ExCantCompileProviderX {
get {
return ResourceManager.GetString("ExCantCompileProviderX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't convert the {0} to the {1}..
/// </summary>
internal static string ExCantConvertXToY {
get {
return ResourceManager.GetString("ExCantConvertXToY", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't create associates for generic type definitions (type '{0}')..
/// </summary>
internal static string ExCantCreateAssociateForGenericTypeDefinitions {
get {
return ResourceManager.GetString("ExCantCreateAssociateForGenericTypeDefinitions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't find associated {0} of type '{1}' for type '{2}'..
/// </summary>
internal static string ExCantFindAssociate {
get {
return ResourceManager.GetString("ExCantFindAssociate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't find associated {0} of type '{1}' for type '{2}' or '{3}'..
/// </summary>
internal static string ExCantFindAssociate2 {
get {
return ResourceManager.GetString("ExCantFindAssociate2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't modify Active or Disposed scope..
/// </summary>
internal static string ExCantModifyActiveOrDisposedScope {
get {
return ResourceManager.GetString("ExCantModifyActiveOrDisposedScope", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't register state..
/// </summary>
internal static string ExCantRegisterState {
get {
return ResourceManager.GetString("ExCantRegisterState", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ChainedBuffer.Remove() method is not supported..
/// </summary>
internal static string ExChainedBufferRemoveMethodIsNotSupported {
get {
return ResourceManager.GetString("ExChainedBufferRemoveMethodIsNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Circular reference is detected..
/// </summary>
internal static string ExCircularReferenceDetected {
get {
return ResourceManager.GetString("ExCircularReferenceDetected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clustered index can not be declared in interface '{0}'.
/// </summary>
internal static string ExClusteredIndexCanNotBeDeclaredInInterfaceX {
get {
return ResourceManager.GetString("ExClusteredIndexCanNotBeDeclaredInInterfaceX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection already contains item with the specified key..
/// </summary>
internal static string ExCollectionAlreadyContainsItemWithSpecifiedKey {
get {
return ResourceManager.GetString("ExCollectionAlreadyContainsItemWithSpecifiedKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collecton already contains specified item..
/// </summary>
internal static string ExCollectionAlreadyContainsSpecifiedItem {
get {
return ResourceManager.GetString("ExCollectionAlreadyContainsSpecifiedItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection cannot contain any neither null or empty string values..
/// </summary>
internal static string ExCollectionCannotContainAnyNeitherNullOrEmptyStringValues {
get {
return ResourceManager.GetString("ExCollectionCannotContainAnyNeitherNullOrEmptyStringValues", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection has been changed during the enumeration..
/// </summary>
internal static string ExCollectionHasBeenChanged {
get {
return ResourceManager.GetString("ExCollectionHasBeenChanged", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection has been modified..
/// </summary>
internal static string ExCollectionHasBeenModified {
get {
return ResourceManager.GetString("ExCollectionHasBeenModified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection is empty..
/// </summary>
internal static string ExCollectionIsEmpty {
get {
return ResourceManager.GetString("ExCollectionIsEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection is read-only..
/// </summary>
internal static string ExCollectionIsReadOnly {
get {
return ResourceManager.GetString("ExCollectionIsReadOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection should contain at least {0} elements..
/// </summary>
internal static string ExCollectionShouldContainAtLeastXElements {
get {
return ResourceManager.GetString("ExCollectionShouldContainAtLeastXElements", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Column already has specified name..
/// </summary>
internal static string ExColumnAlreadyHasSpecifiedName {
get {
return ResourceManager.GetString("ExColumnAlreadyHasSpecifiedName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Column belongs to other table..
/// </summary>
internal static string ExColumnBelongsToOtherTable {
get {
return ResourceManager.GetString("ExColumnBelongsToOtherTable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Value length {0} is greater than column length {1}..
/// </summary>
internal static string ExColumnLength {
get {
return ResourceManager.GetString("ExColumnLength", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to assign null to non-nullable column..
/// </summary>
internal static string ExColumnNotNullable {
get {
return ResourceManager.GetString("ExColumnNotNullable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Columns used by the CalculatedColumn's expression containing the ApplyParameter are removed..
/// </summary>
internal static string ExColumnsUsedByCalculatedColumnExpressionContainingApplyParameterAreRemoved {
get {
return ResourceManager.GetString("ExColumnsUsedByCalculatedColumnExpressionContainingApplyParameterAreRemoved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Columns used by the predicate containing ApplyParameter are removed..
/// </summary>
internal static string ExColumnsUsedByPredicateContainingApplyParameterAreRemoved {
get {
return ResourceManager.GetString("ExColumnsUsedByPredicateContainingApplyParameterAreRemoved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Column "{0}" contains both key and value collections..
/// </summary>
internal static string ExColumnXContainsBothKeyAndValueCollections {
get {
return ResourceManager.GetString("ExColumnXContainsBothKeyAndValueCollections", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Column '{0}' is not found..
/// </summary>
internal static string ExColumnXIsNotFound {
get {
return ResourceManager.GetString("ExColumnXIsNotFound", resourceCulture);
}