EntityRes.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637
  1. namespace System.Data.Entity
  2. {
  3. static class EntityRes
  4. {
  5. public static string GetString (string message, params object[] args)
  6. {
  7. return message;
  8. }
  9. public static string CtxAlias {
  10. get {
  11. return GetString ("CtxAlias");
  12. }
  13. }
  14. public static string CtxAliasedNamespaceImport {
  15. get {
  16. return GetString ("CtxAliasedNamespaceImport");
  17. }
  18. }
  19. public static string CtxAnd {
  20. get {
  21. return GetString ("CtxAnd");
  22. }
  23. }
  24. public static string CtxAnyElement {
  25. get {
  26. return GetString ("CtxAnyElement");
  27. }
  28. }
  29. public static string CtxApplyClause {
  30. get {
  31. return GetString ("CtxApplyClause");
  32. }
  33. }
  34. public static string CtxBetween {
  35. get {
  36. return GetString ("CtxBetween");
  37. }
  38. }
  39. public static string CtxCase {
  40. get {
  41. return GetString ("CtxCase");
  42. }
  43. }
  44. public static string CtxCaseElse {
  45. get {
  46. return GetString ("CtxCaseElse");
  47. }
  48. }
  49. public static string CtxCaseWhenThen {
  50. get {
  51. return GetString ("CtxCaseWhenThen");
  52. }
  53. }
  54. public static string CtxCast {
  55. get {
  56. return GetString ("CtxCast");
  57. }
  58. }
  59. public static string CtxCollatedOrderByClauseItem {
  60. get {
  61. return GetString ("CtxCollatedOrderByClauseItem");
  62. }
  63. }
  64. public static string CtxCollectionTypeDefinition {
  65. get {
  66. return GetString ("CtxCollectionTypeDefinition");
  67. }
  68. }
  69. public static string CtxCommandExpression {
  70. get {
  71. return GetString ("CtxCommandExpression");
  72. }
  73. }
  74. public static string CtxCreateRef {
  75. get {
  76. return GetString ("CtxCreateRef");
  77. }
  78. }
  79. public static string CtxDeref {
  80. get {
  81. return GetString ("CtxDeref");
  82. }
  83. }
  84. public static string CtxDivide {
  85. get {
  86. return GetString ("CtxDivide");
  87. }
  88. }
  89. public static string CtxElement {
  90. get {
  91. return GetString ("CtxElement");
  92. }
  93. }
  94. public static string CtxEquals {
  95. get {
  96. return GetString ("CtxEquals");
  97. }
  98. }
  99. public static string CtxEscapedIdentifier {
  100. get {
  101. return GetString ("CtxEscapedIdentifier");
  102. }
  103. }
  104. public static string CtxExcept {
  105. get {
  106. return GetString ("CtxExcept");
  107. }
  108. }
  109. public static string CtxExists {
  110. get {
  111. return GetString ("CtxExists");
  112. }
  113. }
  114. public static string CtxExpressionList {
  115. get {
  116. return GetString ("CtxExpressionList");
  117. }
  118. }
  119. public static string CtxFlatten {
  120. get {
  121. return GetString ("CtxFlatten");
  122. }
  123. }
  124. public static string CtxFromApplyClause {
  125. get {
  126. return GetString ("CtxFromApplyClause");
  127. }
  128. }
  129. public static string CtxFromClause {
  130. get {
  131. return GetString ("CtxFromClause");
  132. }
  133. }
  134. public static string CtxFromClauseItem {
  135. get {
  136. return GetString ("CtxFromClauseItem");
  137. }
  138. }
  139. public static string CtxFromClauseList {
  140. get {
  141. return GetString ("CtxFromClauseList");
  142. }
  143. }
  144. public static string CtxFromJoinClause {
  145. get {
  146. return GetString ("CtxFromJoinClause");
  147. }
  148. }
  149. public static string CtxFunctionDefinition {
  150. get {
  151. return GetString ("CtxFunctionDefinition");
  152. }
  153. }
  154. public static string CtxGreaterThan {
  155. get {
  156. return GetString ("CtxGreaterThan");
  157. }
  158. }
  159. public static string CtxGreaterThanEqual {
  160. get {
  161. return GetString ("CtxGreaterThanEqual");
  162. }
  163. }
  164. public static string CtxGroupByClause {
  165. get {
  166. return GetString ("CtxGroupByClause");
  167. }
  168. }
  169. public static string CtxGroupPartition {
  170. get {
  171. return GetString ("CtxGroupPartition");
  172. }
  173. }
  174. public static string CtxHavingClause {
  175. get {
  176. return GetString ("CtxHavingClause");
  177. }
  178. }
  179. public static string CtxIdentifier {
  180. get {
  181. return GetString ("CtxIdentifier");
  182. }
  183. }
  184. public static string CtxIn {
  185. get {
  186. return GetString ("CtxIn");
  187. }
  188. }
  189. public static string CtxIntersect {
  190. get {
  191. return GetString ("CtxIntersect");
  192. }
  193. }
  194. public static string CtxIsNotNull {
  195. get {
  196. return GetString ("CtxIsNotNull");
  197. }
  198. }
  199. public static string CtxIsNotOf {
  200. get {
  201. return GetString ("CtxIsNotOf");
  202. }
  203. }
  204. public static string CtxIsNull {
  205. get {
  206. return GetString ("CtxIsNull");
  207. }
  208. }
  209. public static string CtxIsOf {
  210. get {
  211. return GetString ("CtxIsOf");
  212. }
  213. }
  214. public static string CtxJoinClause {
  215. get {
  216. return GetString ("CtxJoinClause");
  217. }
  218. }
  219. public static string CtxJoinOnClause {
  220. get {
  221. return GetString ("CtxJoinOnClause");
  222. }
  223. }
  224. public static string CtxKey {
  225. get {
  226. return GetString ("CtxKey");
  227. }
  228. }
  229. public static string CtxLessThan {
  230. get {
  231. return GetString ("CtxLessThan");
  232. }
  233. }
  234. public static string CtxLessThanEqual {
  235. get {
  236. return GetString ("CtxLessThanEqual");
  237. }
  238. }
  239. public static string CtxLike {
  240. get {
  241. return GetString ("CtxLike");
  242. }
  243. }
  244. public static string CtxLimitSubClause {
  245. get {
  246. return GetString ("CtxLimitSubClause");
  247. }
  248. }
  249. public static string CtxLiteral {
  250. get {
  251. return GetString ("CtxLiteral");
  252. }
  253. }
  254. public static string CtxMemberAccess {
  255. get {
  256. return GetString ("CtxMemberAccess");
  257. }
  258. }
  259. public static string CtxMethod {
  260. get {
  261. return GetString ("CtxMethod");
  262. }
  263. }
  264. public static string CtxMinus {
  265. get {
  266. return GetString ("CtxMinus");
  267. }
  268. }
  269. public static string CtxModulus {
  270. get {
  271. return GetString ("CtxModulus");
  272. }
  273. }
  274. public static string CtxMultiply {
  275. get {
  276. return GetString ("CtxMultiply");
  277. }
  278. }
  279. public static string CtxMultisetCtor {
  280. get {
  281. return GetString ("CtxMultisetCtor");
  282. }
  283. }
  284. public static string CtxNamespaceImport {
  285. get {
  286. return GetString ("CtxNamespaceImport");
  287. }
  288. }
  289. public static string CtxNamespaceImportList {
  290. get {
  291. return GetString ("CtxNamespaceImportList");
  292. }
  293. }
  294. public static string CtxNavigate {
  295. get {
  296. return GetString ("CtxNavigate");
  297. }
  298. }
  299. public static string CtxNot {
  300. get {
  301. return GetString ("CtxNot");
  302. }
  303. }
  304. public static string CtxNotBetween {
  305. get {
  306. return GetString ("CtxNotBetween");
  307. }
  308. }
  309. public static string CtxNotEqual {
  310. get {
  311. return GetString ("CtxNotEqual");
  312. }
  313. }
  314. public static string CtxNotIn {
  315. get {
  316. return GetString ("CtxNotIn");
  317. }
  318. }
  319. public static string CtxNotLike {
  320. get {
  321. return GetString ("CtxNotLike");
  322. }
  323. }
  324. public static string CtxNullLiteral {
  325. get {
  326. return GetString ("CtxNullLiteral");
  327. }
  328. }
  329. public static string CtxOfType {
  330. get {
  331. return GetString ("CtxOfType");
  332. }
  333. }
  334. public static string CtxOfTypeOnly {
  335. get {
  336. return GetString ("CtxOfTypeOnly");
  337. }
  338. }
  339. public static string CtxOr {
  340. get {
  341. return GetString ("CtxOr");
  342. }
  343. }
  344. public static string CtxOrderByClause {
  345. get {
  346. return GetString ("CtxOrderByClause");
  347. }
  348. }
  349. public static string CtxOrderByClauseItem {
  350. get {
  351. return GetString ("CtxOrderByClauseItem");
  352. }
  353. }
  354. public static string CtxOverlaps {
  355. get {
  356. return GetString ("CtxOverlaps");
  357. }
  358. }
  359. public static string CtxParen {
  360. get {
  361. return GetString ("CtxParen");
  362. }
  363. }
  364. public static string CtxPlus {
  365. get {
  366. return GetString ("CtxPlus");
  367. }
  368. }
  369. public static string CtxQueryExpression {
  370. get {
  371. return GetString ("CtxQueryExpression");
  372. }
  373. }
  374. public static string CtxQueryStatement {
  375. get {
  376. return GetString ("CtxQueryStatement");
  377. }
  378. }
  379. public static string CtxRef {
  380. get {
  381. return GetString ("CtxRef");
  382. }
  383. }
  384. public static string CtxRefTypeDefinition {
  385. get {
  386. return GetString ("CtxRefTypeDefinition");
  387. }
  388. }
  389. public static string CtxRelationship {
  390. get {
  391. return GetString ("CtxRelationship");
  392. }
  393. }
  394. public static string CtxRelationshipList {
  395. get {
  396. return GetString ("CtxRelationshipList");
  397. }
  398. }
  399. public static string CtxRowCtor {
  400. get {
  401. return GetString ("CtxRowCtor");
  402. }
  403. }
  404. public static string CtxRowTypeDefinition {
  405. get {
  406. return GetString ("CtxRowTypeDefinition");
  407. }
  408. }
  409. public static string CtxSelectRowClause {
  410. get {
  411. return GetString ("CtxSelectRowClause");
  412. }
  413. }
  414. public static string CtxSelectValueClause {
  415. get {
  416. return GetString ("CtxSelectValueClause");
  417. }
  418. }
  419. public static string CtxSet {
  420. get {
  421. return GetString ("CtxSet");
  422. }
  423. }
  424. public static string CtxSimpleIdentifier {
  425. get {
  426. return GetString ("CtxSimpleIdentifier");
  427. }
  428. }
  429. public static string CtxSkipSubClause {
  430. get {
  431. return GetString ("CtxSkipSubClause");
  432. }
  433. }
  434. public static string CtxTopSubClause {
  435. get {
  436. return GetString ("CtxTopSubClause");
  437. }
  438. }
  439. public static string CtxTreat {
  440. get {
  441. return GetString ("CtxTreat");
  442. }
  443. }
  444. public static string CtxTypeName {
  445. get {
  446. return GetString ("CtxTypeName");
  447. }
  448. }
  449. public static string CtxTypeNameWithTypeSpec {
  450. get {
  451. return GetString ("CtxTypeNameWithTypeSpec");
  452. }
  453. }
  454. public static string CtxUnaryMinus {
  455. get {
  456. return GetString ("CtxUnaryMinus");
  457. }
  458. }
  459. public static string CtxUnaryPlus {
  460. get {
  461. return GetString ("CtxUnaryPlus");
  462. }
  463. }
  464. public static string CtxUnion {
  465. get {
  466. return GetString ("CtxUnion");
  467. }
  468. }
  469. public static string CtxUnionAll {
  470. get {
  471. return GetString ("CtxUnionAll");
  472. }
  473. }
  474. public static string CtxWhereClause {
  475. get {
  476. return GetString ("CtxWhereClause");
  477. }
  478. }
  479. public static string ParserFatalError {
  480. get {
  481. return GetString ("ParserFatalError");
  482. }
  483. }
  484. public static string ParserInputError {
  485. get {
  486. return GetString ("ParserInputError");
  487. }
  488. }
  489. public static string GenericSyntaxError {
  490. get {
  491. return GetString ("GenericSyntaxError");
  492. }
  493. }
  494. public static string InvalidSchemaEncountered {
  495. get {
  496. return GetString ("InvalidSchemaEncountered");
  497. }
  498. }
  499. public static string ViewGen_Foreign_Key_ColumnOrder_Incorrect {
  500. get {
  501. return GetString ("ViewGen_Foreign_Key_ColumnOrder_Incorrect");
  502. }
  503. }
  504. public static string ViewGen_CommaBlank {
  505. get {
  506. return GetString ("ViewGen_CommaBlank");
  507. }
  508. }
  509. public static string Mapping_Default_OCMapping_Member_Type_Mismatch {
  510. get {
  511. return GetString ("Mapping_Default_OCMapping_Member_Type_Mismatch");
  512. }
  513. }
  514. public static string EntityClient_ProviderSpecificError {
  515. get {
  516. return GetString ("EntityClient_ProviderSpecificError");
  517. }
  518. }
  519. public const string EntityDataCategory_Context = "EntityDataCategory_Context";
  520. public const string DataCategory_Data = "DataCategory_Data";
  521. public const string EntityDataCategory_Source = "EntityDataCategory_Source";
  522. public const string EntityDataCategory_NamedConnectionString = "EntityDataCategory_NamedConnectionString";
  523. public const string DataCategory_Update = "DataCategory_Update";
  524. public const string EntityConnectionString_ProviderConnectionString = "EntityConnectionString_ProviderConnectionString";
  525. public const string DbParameter_Direction = "DbParameter_Direction";
  526. public const string DbParameter_Size = "DbParameter_Size";
  527. public const string DbParameter_SourceColumn = "DbParameter_SourceColumn";
  528. public const string EntityConnectionString_Provider = "EntityConnectionString_Provider";
  529. public const string DbParameter_SourceVersion = "DbParameter_SourceVersion";
  530. public const string EntityConnectionString_Metadata = "EntityConnectionString_Metadata";
  531. public const string EntityConnectionString_Name = "EntityConnectionString_Name";
  532. }
  533. }