Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EntityRes.cs « System.Data.Entity « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c7c71a33fa88270065e7449392d06b3c6a7e33a (plain)
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
namespace System.Data.Entity
{
	static class EntityRes
	{
		public static string GetString (string message, params object[] args)
		{
			return message;
		}

		public static string CtxAlias {
			get {
				return GetString ("CtxAlias");
			}
		}

		public static string CtxAliasedNamespaceImport {
			get {
				return GetString ("CtxAliasedNamespaceImport");
			}
		}

		public static string CtxAnd {
			get {
				return GetString ("CtxAnd");
			}
		}

		public static string CtxAnyElement {
			get {
				return GetString ("CtxAnyElement");
			}
		}

		public static string CtxApplyClause {
			get {
				return GetString ("CtxApplyClause");
			}
		}

		public static string CtxBetween {
			get {
				return GetString ("CtxBetween");
			}
		}

		public static string CtxCase {
			get {
				return GetString ("CtxCase");
			}
		}

		public static string CtxCaseElse {
			get {
				return GetString ("CtxCaseElse");
			}
		}

		public static string CtxCaseWhenThen {
			get {
				return GetString ("CtxCaseWhenThen");
			}
		}

		public static string CtxCast {
			get {
				return GetString ("CtxCast");
			}
		}

		public static string CtxCollatedOrderByClauseItem {
			get {
				return GetString ("CtxCollatedOrderByClauseItem");
			}
		}

		public static string CtxCollectionTypeDefinition {
			get {
				return GetString ("CtxCollectionTypeDefinition");
			}
		}

		public static string CtxCommandExpression {
			get {
				return GetString ("CtxCommandExpression");
			}
		}

		public static string CtxCreateRef {
			get {
				return GetString ("CtxCreateRef");
			}
		}

		public static string CtxDeref {
			get {
				return GetString ("CtxDeref");
			}
		}

		public static string CtxDivide {
			get {
				return GetString ("CtxDivide");
			}
		}

		public static string CtxElement {
			get {
				return GetString ("CtxElement");
			}
		}

		public static string CtxEquals {
			get {
				return GetString ("CtxEquals");
			}
		}

		public static string CtxEscapedIdentifier {
			get {
				return GetString ("CtxEscapedIdentifier");
			}
		}

		public static string CtxExcept {
			get {
				return GetString ("CtxExcept");
			}
		}

		public static string CtxExists {
			get {
				return GetString ("CtxExists");
			}
		}

		public static string CtxExpressionList {
			get {
				return GetString ("CtxExpressionList");
			}
		}

		public static string CtxFlatten {
			get {
				return GetString ("CtxFlatten");
			}
		}

		public static string CtxFromApplyClause {
			get {
				return GetString ("CtxFromApplyClause");
			}
		}

		public static string CtxFromClause {
			get {
				return GetString ("CtxFromClause");
			}
		}

		public static string CtxFromClauseItem {
			get {
				return GetString ("CtxFromClauseItem");
			}
		}

		public static string CtxFromClauseList {
			get {
				return GetString ("CtxFromClauseList");
			}
		}

		public static string CtxFromJoinClause {
			get {
				return GetString ("CtxFromJoinClause");
			}
		}

		public static string CtxFunctionDefinition {
			get {
				return GetString ("CtxFunctionDefinition");
			}
		}

		public static string CtxGreaterThan {
			get {
				return GetString ("CtxGreaterThan");
			}
		}

		public static string CtxGreaterThanEqual {
			get {
				return GetString ("CtxGreaterThanEqual");
			}
		}

		public static string CtxGroupByClause {
			get {
				return GetString ("CtxGroupByClause");
			}
		}

		public static string CtxGroupPartition {
			get {
				return GetString ("CtxGroupPartition");
			}
		}

		public static string CtxHavingClause {
			get {
				return GetString ("CtxHavingClause");
			}
		}

		public static string CtxIdentifier {
			get {
				return GetString ("CtxIdentifier");
			}
		}

		public static string CtxIn {
			get {
				return GetString ("CtxIn");
			}
		}

		public static string CtxIntersect {
			get {
				return GetString ("CtxIntersect");
			}
		}

		public static string CtxIsNotNull {
			get {
				return GetString ("CtxIsNotNull");
			}
		}

		public static string CtxIsNotOf {
			get {
				return GetString ("CtxIsNotOf");
			}
		}

		public static string CtxIsNull {
			get {
				return GetString ("CtxIsNull");
			}
		}

		public static string CtxIsOf {
			get {
				return GetString ("CtxIsOf");
			}
		}

		public static string CtxJoinClause {
			get {
				return GetString ("CtxJoinClause");
			}
		}

		public static string CtxJoinOnClause {
			get {
				return GetString ("CtxJoinOnClause");
			}
		}

		public static string CtxKey {
			get {
				return GetString ("CtxKey");
			}
		}

		public static string CtxLessThan {
			get {
				return GetString ("CtxLessThan");
			}
		}

		public static string CtxLessThanEqual {
			get {
				return GetString ("CtxLessThanEqual");
			}
		}

		public static string CtxLike {
			get {
				return GetString ("CtxLike");
			}
		}

		public static string CtxLimitSubClause {
			get {
				return GetString ("CtxLimitSubClause");
			}
		}

		public static string CtxLiteral {
			get {
				return GetString ("CtxLiteral");
			}
		}

		public static string CtxMemberAccess {
			get {
				return GetString ("CtxMemberAccess");
			}
		}

		public static string CtxMethod {
			get {
				return GetString ("CtxMethod");
			}
		}

		public static string CtxMinus {
			get {
				return GetString ("CtxMinus");
			}
		}

		public static string CtxModulus {
			get {
				return GetString ("CtxModulus");
			}
		}

		public static string CtxMultiply {
			get {
				return GetString ("CtxMultiply");
			}
		}

		public static string CtxMultisetCtor {
			get {
				return GetString ("CtxMultisetCtor");
			}
		}

		public static string CtxNamespaceImport {
			get {
				return GetString ("CtxNamespaceImport");
			}
		}

		public static string CtxNamespaceImportList {
			get {
				return GetString ("CtxNamespaceImportList");
			}
		}

		public static string CtxNavigate {
			get {
				return GetString ("CtxNavigate");
			}
		}

		public static string CtxNot {
			get {
				return GetString ("CtxNot");
			}
		}

		public static string CtxNotBetween {
			get {
				return GetString ("CtxNotBetween");
			}
		}

		public static string CtxNotEqual {
			get {
				return GetString ("CtxNotEqual");
			}
		}

		public static string CtxNotIn {
			get {
				return GetString ("CtxNotIn");
			}
		}

		public static string CtxNotLike {
			get {
				return GetString ("CtxNotLike");
			}
		}

		public static string CtxNullLiteral {
			get {
				return GetString ("CtxNullLiteral");
			}
		}

		public static string CtxOfType {
			get {
				return GetString ("CtxOfType");
			}
		}

		public static string CtxOfTypeOnly {
			get {
				return GetString ("CtxOfTypeOnly");
			}
		}

		public static string CtxOr {
			get {
				return GetString ("CtxOr");
			}
		}

		public static string CtxOrderByClause {
			get {
				return GetString ("CtxOrderByClause");
			}
		}

		public static string CtxOrderByClauseItem {
			get {
				return GetString ("CtxOrderByClauseItem");
			}
		}

		public static string CtxOverlaps {
			get {
				return GetString ("CtxOverlaps");
			}
		}

		public static string CtxParen {
			get {
				return GetString ("CtxParen");
			}
		}

		public static string CtxPlus {
			get {
				return GetString ("CtxPlus");
			}
		}

		public static string CtxQueryExpression {
			get {
				return GetString ("CtxQueryExpression");
			}
		}

		public static string CtxQueryStatement {
			get {
				return GetString ("CtxQueryStatement");
			}
		}

		public static string CtxRef {
			get {
				return GetString ("CtxRef");
			}
		}

		public static string CtxRefTypeDefinition {
			get {
				return GetString ("CtxRefTypeDefinition");
			}
		}

		public static string CtxRelationship {
			get {
				return GetString ("CtxRelationship");
			}
		}

		public static string CtxRelationshipList {
			get {
				return GetString ("CtxRelationshipList");
			}
		}

		public static string CtxRowCtor {
			get {
				return GetString ("CtxRowCtor");
			}
		}

		public static string CtxRowTypeDefinition {
			get {
				return GetString ("CtxRowTypeDefinition");
			}
		}

		public static string CtxSelectRowClause {
			get {
				return GetString ("CtxSelectRowClause");
			}
		}

		public static string CtxSelectValueClause {
			get {
				return GetString ("CtxSelectValueClause");
			}
		}

		public static string CtxSet {
			get {
				return GetString ("CtxSet");
			}
		}

		public static string CtxSimpleIdentifier {
			get {
				return GetString ("CtxSimpleIdentifier");
			}
		}

		public static string CtxSkipSubClause {
			get {
				return GetString ("CtxSkipSubClause");
			}
		}

		public static string CtxTopSubClause {
			get {
				return GetString ("CtxTopSubClause");
			}
		}

		public static string CtxTreat {
			get {
				return GetString ("CtxTreat");
			}
		}

		public static string CtxTypeName {
			get {
				return GetString ("CtxTypeName");
			}
		}

		public static string CtxTypeNameWithTypeSpec {
			get {
				return GetString ("CtxTypeNameWithTypeSpec");
			}
		}

		public static string CtxUnaryMinus {
			get {
				return GetString ("CtxUnaryMinus");
			}
		}

		public static string CtxUnaryPlus {
			get {
				return GetString ("CtxUnaryPlus");
			}
		}

		public static string CtxUnion {
			get {
				return GetString ("CtxUnion");
			}
		}

		public static string CtxUnionAll {
			get {
				return GetString ("CtxUnionAll");
			}
		}

		public static string CtxWhereClause {
			get {
				return GetString ("CtxWhereClause");
			}
		}

		public static string ParserFatalError {
			get {
				return GetString ("ParserFatalError");
			}
		}

		public static string ParserInputError {
			get {
				return GetString ("ParserInputError");
			}
		}

		public static string GenericSyntaxError {
			get {
				return GetString ("GenericSyntaxError");
			}
		}

		public static string InvalidSchemaEncountered {
			get {
				return GetString ("InvalidSchemaEncountered");
			}
		}


		public static string ViewGen_Foreign_Key_ColumnOrder_Incorrect {
			get {
				return GetString ("ViewGen_Foreign_Key_ColumnOrder_Incorrect");
			}
		}

		public static string ViewGen_CommaBlank {
			get {
				return GetString ("ViewGen_CommaBlank");
			}
		}

		public static string Mapping_Default_OCMapping_Member_Type_Mismatch {
			get {
				return GetString ("Mapping_Default_OCMapping_Member_Type_Mismatch");
			}
		}

		public static string EntityClient_ProviderSpecificError {
			get {
				return GetString ("EntityClient_ProviderSpecificError");
			}
		}

		public const string EntityDataCategory_Context = "EntityDataCategory_Context";
		public const string DataCategory_Data = "DataCategory_Data";
		public const string EntityDataCategory_Source = "EntityDataCategory_Source";
		public const string EntityDataCategory_NamedConnectionString = "EntityDataCategory_NamedConnectionString";
		public const string DataCategory_Update = "DataCategory_Update";
		public const string EntityConnectionString_ProviderConnectionString = "EntityConnectionString_ProviderConnectionString";
		public const string DbParameter_Direction = "DbParameter_Direction";
		public const string DbParameter_Size = "DbParameter_Size";
		public const string DbParameter_SourceColumn = "DbParameter_SourceColumn";
		public const string EntityConnectionString_Provider = "EntityConnectionString_Provider";
		public const string DbParameter_SourceVersion = "DbParameter_SourceVersion";
		public const string EntityConnectionString_Metadata = "EntityConnectionString_Metadata";
		public const string EntityConnectionString_Name = "EntityConnectionString_Name";
	}
}