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

System.Data.Entity.cs « v4.8 « src - github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6650763ec3b5f10f3febf1e5ae03bf06842b649f (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

[assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
[assembly:System.CLSCompliantAttribute(true)]
[assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
[assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Data.Entity.dll")]
[assembly:System.Reflection.AssemblyDescriptionAttribute("System.Data.Entity.dll")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("4.8.3761.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.8.3761.0")]
[assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
[assembly:System.Reflection.AssemblyTitleAttribute("System.Data.Entity.dll")]
[assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
[assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComCompatibleVersionAttribute(1, 0, 3300, 0)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute(System.Runtime.InteropServices.DllImportSearchPath.AssemblyDirectory | System.Runtime.InteropServices.DllImportSearchPath.System32)]
[assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
[assembly:System.Security.SecurityCriticalAttribute]
[assembly:System.Security.SecurityRulesAttribute(System.Security.SecurityRuleSet.Level1, SkipVerificationInFullTrust=true)]
namespace System.Data
{
    [System.SerializableAttribute]
    public sealed partial class EntityCommandCompilationException : System.Data.EntityException
    {
        public EntityCommandCompilationException() { }
        public EntityCommandCompilationException(string message) { }
        public EntityCommandCompilationException(string message, System.Exception innerException) { }
    }
    [System.SerializableAttribute]
    public sealed partial class EntityCommandExecutionException : System.Data.EntityException
    {
        public EntityCommandExecutionException() { }
        public EntityCommandExecutionException(string message) { }
        public EntityCommandExecutionException(string message, System.Exception innerException) { }
    }
    [System.SerializableAttribute]
    public partial class EntityException : System.Data.DataException
    {
        public EntityException() { }
        protected EntityException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        public EntityException(string message) { }
        public EntityException(string message, System.Exception innerException) { }
    }
    [System.Diagnostics.DebuggerDisplayAttribute("{ConcatKeyValue()}")]
    [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
    [System.SerializableAttribute]
    public sealed partial class EntityKey : System.IEquatable<System.Data.EntityKey>
    {
        public static readonly System.Data.EntityKey EntityNotValidKey;
        public static readonly System.Data.EntityKey NoEntitySetKey;
        public EntityKey() { }
        public EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>> entityKeyValues) { }
        public EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Data.EntityKeyMember> entityKeyValues) { }
        public EntityKey(string qualifiedEntitySetName, string keyName, object keyValue) { }
        [System.Runtime.Serialization.DataMemberAttribute]
        public string EntityContainerName { get { throw null; } set { } }
        [System.Runtime.Serialization.DataMemberAttribute]
        public System.Data.EntityKeyMember[] EntityKeyValues { get { throw null; } set { } }
        [System.Runtime.Serialization.DataMemberAttribute]
        public string EntitySetName { get { throw null; } set { } }
        public bool IsTemporary { get { throw null; } }
        public bool Equals(System.Data.EntityKey other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public System.Data.Metadata.Edm.EntitySet GetEntitySet(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace) { throw null; }
        public override int GetHashCode() { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnDeserializedAttribute]
        public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnDeserializingAttribute]
        public void OnDeserializing(System.Runtime.Serialization.StreamingContext context) { }
        public static bool operator ==(System.Data.EntityKey key1, System.Data.EntityKey key2) { throw null; }
        public static bool operator !=(System.Data.EntityKey key1, System.Data.EntityKey key2) { throw null; }
    }
    [System.Runtime.Serialization.DataContractAttribute]
    [System.SerializableAttribute]
    public partial class EntityKeyMember
    {
        public EntityKeyMember() { }
        public EntityKeyMember(string keyName, object keyValue) { }
        [System.Runtime.Serialization.DataMemberAttribute]
        public string Key { get { throw null; } set { } }
        [System.Runtime.Serialization.DataMemberAttribute]
        public object Value { get { throw null; } set { } }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public sealed partial class EntitySqlException : System.Data.EntityException
    {
        public EntitySqlException() { }
        public EntitySqlException(string message) { }
        public EntitySqlException(string message, System.Exception innerException) { }
        public int Column { get { throw null; } }
        public string ErrorContext { get { throw null; } }
        public string ErrorDescription { get { throw null; } }
        public int Line { get { throw null; } }
        [System.Security.SecurityCriticalAttribute]
        [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
        public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
    }
    [System.ComponentModel.DataAnnotations.BindableTypeAttribute(IsBindable=false)]
    [System.FlagsAttribute]
    public enum EntityState
    {
        Added = 4,
        Deleted = 8,
        Detached = 1,
        Modified = 16,
        Unchanged = 2,
    }
    public partial interface IExtendedDataRecord : System.Data.IDataRecord
    {
        System.Data.Common.DataRecordInfo DataRecordInfo { get; }
        System.Data.Common.DbDataReader GetDataReader(int i);
        System.Data.Common.DbDataRecord GetDataRecord(int i);
    }
    [System.SerializableAttribute]
    public sealed partial class InvalidCommandTreeException : System.Data.DataException
    {
        public InvalidCommandTreeException() { }
        public InvalidCommandTreeException(string message) { }
        public InvalidCommandTreeException(string message, System.Exception innerException) { }
    }
    [System.SerializableAttribute]
    public sealed partial class MappingException : System.Data.EntityException
    {
        public MappingException() { }
        public MappingException(string message) { }
        public MappingException(string message, System.Exception innerException) { }
    }
    [System.SerializableAttribute]
    public sealed partial class MetadataException : System.Data.EntityException
    {
        public MetadataException() { }
        public MetadataException(string message) { }
        public MetadataException(string message, System.Exception innerException) { }
    }
    [System.SerializableAttribute]
    public sealed partial class ObjectNotFoundException : System.Data.DataException
    {
        public ObjectNotFoundException() { }
        public ObjectNotFoundException(string message) { }
        public ObjectNotFoundException(string message, System.Exception innerException) { }
    }
    [System.SerializableAttribute]
    public sealed partial class OptimisticConcurrencyException : System.Data.UpdateException
    {
        public OptimisticConcurrencyException() { }
        public OptimisticConcurrencyException(string message) { }
        public OptimisticConcurrencyException(string message, System.Exception innerException) { }
        public OptimisticConcurrencyException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries) { }
    }
    [System.SerializableAttribute]
    public sealed partial class PropertyConstraintException : System.Data.ConstraintException
    {
        public PropertyConstraintException() { }
        public PropertyConstraintException(string message) { }
        public PropertyConstraintException(string message, System.Exception innerException) { }
        public PropertyConstraintException(string message, string propertyName) { }
        public PropertyConstraintException(string message, string propertyName, System.Exception innerException) { }
        public string PropertyName { get { throw null; } }
        [System.Security.SecurityCriticalAttribute]
        [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
        public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
    }
    [System.SerializableAttribute]
    public sealed partial class ProviderIncompatibleException : System.Data.EntityException
    {
        public ProviderIncompatibleException() { }
        public ProviderIncompatibleException(string message) { }
        public ProviderIncompatibleException(string message, System.Exception innerException) { }
    }
    [System.SerializableAttribute]
    public partial class UpdateException : System.Data.DataException
    {
        public UpdateException() { }
        protected UpdateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        public UpdateException(string message) { }
        public UpdateException(string message, System.Exception innerException) { }
        public UpdateException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries) { }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Objects.ObjectStateEntry> StateEntries { get { throw null; } }
    }
}
namespace System.Data.Common
{
    public partial class DataRecordInfo
    {
        public DataRecordInfo(System.Data.Metadata.Edm.TypeUsage metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo) { }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.FieldMetadata> FieldMetadata { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage RecordType { get { throw null; } }
    }
    public partial class DbCommandDefinition
    {
        protected DbCommandDefinition() { }
        protected DbCommandDefinition(System.Data.Common.DbCommand prototype) { }
        public virtual System.Data.Common.DbCommand CreateCommand() { throw null; }
    }
    public abstract partial class DbProviderManifest
    {
        public static readonly string ConceptualSchemaDefinition;
        public static readonly string ConceptualSchemaDefinitionVersion3;
        public static readonly string StoreSchemaDefinition;
        public static readonly string StoreSchemaDefinitionVersion3;
        public static readonly string StoreSchemaMapping;
        public static readonly string StoreSchemaMappingVersion3;
        protected DbProviderManifest() { }
        public abstract string NamespaceName { get; }
        public virtual string EscapeLikeArgument(string argument) { throw null; }
        protected abstract System.Xml.XmlReader GetDbInformation(string informationType);
        public abstract System.Data.Metadata.Edm.TypeUsage GetEdmType(System.Data.Metadata.Edm.TypeUsage storeType);
        public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetFacetDescriptions(System.Data.Metadata.Edm.EdmType edmType);
        public System.Xml.XmlReader GetInformation(string informationType) { throw null; }
        public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetStoreFunctions();
        public abstract System.Data.Metadata.Edm.TypeUsage GetStoreType(System.Data.Metadata.Edm.TypeUsage edmType);
        public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetStoreTypes();
        public virtual bool SupportsEscapingLikeArgument(out char escapeCharacter) { throw null; }
    }
    [System.CLSCompliantAttribute(false)]
    public abstract partial class DbProviderServices
    {
        protected DbProviderServices() { }
        public System.Data.Common.DbCommandDefinition CreateCommandDefinition(System.Data.Common.CommandTrees.DbCommandTree commandTree) { throw null; }
        public virtual System.Data.Common.DbCommandDefinition CreateCommandDefinition(System.Data.Common.DbCommand prototype) { throw null; }
        public System.Data.Common.DbCommandDefinition CreateCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree) { throw null; }
        public void CreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
        public string CreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
        protected abstract System.Data.Common.DbCommandDefinition CreateDbCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree);
        public bool DatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
        protected virtual void DbCreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
        protected virtual string DbCreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
        protected virtual bool DbDatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
        protected virtual void DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
        protected virtual System.Data.Spatial.DbSpatialServices DbGetSpatialServices(string manifestToken) { throw null; }
        public void DeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
        protected abstract System.Data.Common.DbProviderManifest GetDbProviderManifest(string manifestToken);
        protected abstract string GetDbProviderManifestToken(System.Data.Common.DbConnection connection);
        protected virtual System.Data.Spatial.DbSpatialDataReader GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken) { throw null; }
        public static System.Data.Common.DbProviderFactory GetProviderFactory(System.Data.Common.DbConnection connection) { throw null; }
        public System.Data.Common.DbProviderManifest GetProviderManifest(string manifestToken) { throw null; }
        public string GetProviderManifestToken(System.Data.Common.DbConnection connection) { throw null; }
        public static System.Data.Common.DbProviderServices GetProviderServices(System.Data.Common.DbConnection connection) { throw null; }
        public System.Data.Spatial.DbSpatialDataReader GetSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken) { throw null; }
        public System.Data.Spatial.DbSpatialServices GetSpatialServices(string manifestToken) { throw null; }
        protected virtual void SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value) { }
    }
    public abstract partial class DbXmlEnabledProviderManifest : System.Data.Common.DbProviderManifest
    {
        protected DbXmlEnabledProviderManifest(System.Xml.XmlReader reader) { }
        public override string NamespaceName { get { throw null; } }
        protected System.Collections.Generic.Dictionary<string, System.Data.Metadata.Edm.PrimitiveType> StoreTypeNameToEdmPrimitiveType { get { throw null; } }
        protected System.Collections.Generic.Dictionary<string, System.Data.Metadata.Edm.PrimitiveType> StoreTypeNameToStorePrimitiveType { get { throw null; } }
        public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetFacetDescriptions(System.Data.Metadata.Edm.EdmType type) { throw null; }
        public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetStoreFunctions() { throw null; }
        public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetStoreTypes() { throw null; }
    }
    public partial class EntityRecordInfo : System.Data.Common.DataRecordInfo
    {
        public EntityRecordInfo(System.Data.Metadata.Edm.EntityType metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo, System.Data.EntityKey entityKey, System.Data.Metadata.Edm.EntitySet entitySet) : base (default(System.Data.Metadata.Edm.TypeUsage), default(System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember>)) { }
        public System.Data.EntityKey EntityKey { get { throw null; } }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct FieldMetadata
    {
        private object _dummy;
        private int _dummyPrimitive;
        public FieldMetadata(int ordinal, System.Data.Metadata.Edm.EdmMember fieldType) { throw null; }
        public System.Data.Metadata.Edm.EdmMember FieldType { get { throw null; } }
        public int Ordinal { get { throw null; } }
    }
}
namespace System.Data.Common.CommandTrees
{
    public abstract partial class DbAggregate
    {
        internal DbAggregate() { }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
    }
    public sealed partial class DbAndExpression : System.Data.Common.CommandTrees.DbBinaryExpression
    {
        internal DbAndExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbApplyExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbApplyExpression() { }
        public System.Data.Common.CommandTrees.DbExpressionBinding Apply { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbArithmeticExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbArithmeticExpression() { }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public abstract partial class DbBinaryExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbBinaryExpression() { }
        public System.Data.Common.CommandTrees.DbExpression Left { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Right { get { throw null; } }
    }
    public sealed partial class DbCaseExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbCaseExpression() { }
        public System.Data.Common.CommandTrees.DbExpression Else { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Then { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> When { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbCastExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbCastExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public abstract partial class DbCommandTree
    {
        internal DbCommandTree() { }
        public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Metadata.Edm.TypeUsage>> Parameters { get { throw null; } }
    }
    public sealed partial class DbComparisonExpression : System.Data.Common.CommandTrees.DbBinaryExpression
    {
        internal DbComparisonExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbConstantExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbConstantExpression() { }
        public object Value { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbCrossJoinExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbCrossJoinExpression() { }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> Inputs { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbDeleteCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
    {
        internal DbDeleteCommandTree() { }
        public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
    }
    public sealed partial class DbDerefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbDerefExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbDistinctExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbDistinctExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbElementExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbElementExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbEntityRefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbEntityRefExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbExceptExpression : System.Data.Common.CommandTrees.DbBinaryExpression
    {
        internal DbExceptExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public abstract partial class DbExpression
    {
        internal DbExpression() { }
        public System.Data.Common.CommandTrees.DbExpressionKind ExpressionKind { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
        public abstract void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor);
        public abstract TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor);
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        public override bool Equals(object obj) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromBinary(byte[] value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromBoolean(System.Nullable<bool> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromByte(System.Nullable<byte> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromDateTime(System.Nullable<System.DateTime> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromDateTimeOffset(System.Nullable<System.DateTimeOffset> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromDecimal(System.Nullable<decimal> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromDouble(System.Nullable<double> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromGeography(System.Data.Spatial.DbGeography value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromGeometry(System.Data.Spatial.DbGeometry value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromGuid(System.Nullable<System.Guid> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromInt16(System.Nullable<short> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromInt32(System.Nullable<int> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromInt64(System.Nullable<long> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromSingle(System.Nullable<float> value) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression FromString(string value) { throw null; }
        public override int GetHashCode() { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (byte[] value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Data.Spatial.DbGeography value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Data.Spatial.DbGeometry value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<bool> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<byte> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<System.DateTimeOffset> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<System.DateTime> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<decimal> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<double> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<System.Guid> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<short> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<int> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<long> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<float> value) { throw null; }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (string value) { throw null; }
    }
    public sealed partial class DbExpressionBinding
    {
        internal DbExpressionBinding() { }
        public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
        public System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable { get { throw null; } }
        public string VariableName { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage VariableType { get { throw null; } }
    }
    public enum DbExpressionKind
    {
        All = 0,
        And = 1,
        Any = 2,
        Case = 3,
        Cast = 4,
        Constant = 5,
        CrossApply = 6,
        CrossJoin = 7,
        Deref = 8,
        Distinct = 9,
        Divide = 10,
        Element = 11,
        EntityRef = 12,
        Equals = 13,
        Except = 14,
        Filter = 15,
        FullOuterJoin = 16,
        Function = 17,
        GreaterThan = 18,
        GreaterThanOrEquals = 19,
        GroupBy = 20,
        InnerJoin = 21,
        Intersect = 22,
        IsEmpty = 23,
        IsNull = 24,
        IsOf = 25,
        IsOfOnly = 26,
        Lambda = 57,
        LeftOuterJoin = 27,
        LessThan = 28,
        LessThanOrEquals = 29,
        Like = 30,
        Limit = 31,
        Minus = 32,
        Modulo = 33,
        Multiply = 34,
        NewInstance = 35,
        Not = 36,
        NotEquals = 37,
        Null = 38,
        OfType = 39,
        OfTypeOnly = 40,
        Or = 41,
        OuterApply = 42,
        ParameterReference = 43,
        Plus = 44,
        Project = 45,
        Property = 46,
        Ref = 47,
        RefKey = 48,
        RelationshipNavigation = 49,
        Scan = 50,
        Skip = 51,
        Sort = 52,
        Treat = 53,
        UnaryMinus = 54,
        UnionAll = 55,
        VariableReference = 56,
    }
    public abstract partial class DbExpressionVisitor
    {
        protected DbExpressionVisitor() { }
        public abstract void Visit(System.Data.Common.CommandTrees.DbAndExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbApplyExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbCaseExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbCastExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbConstantExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbDerefExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbElementExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbExceptExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbFilterExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbJoinExpression expression);
        public virtual void Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { }
        public abstract void Visit(System.Data.Common.CommandTrees.DbLikeExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbLimitExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbNotExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbNullExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbOrExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbProjectExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbRefExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbScanExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbSkipExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbSortExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbTreatExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression);
        public abstract void Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression);
    }
    public abstract partial class DbExpressionVisitor<TResultType>
    {
        protected DbExpressionVisitor() { }
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbAndExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbApplyExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCaseExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCastExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbConstantExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbDerefExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbElementExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbExceptExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbFilterExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbJoinExpression expression);
        public virtual TResultType Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { throw null; }
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbLikeExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbLimitExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNotExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNullExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbOrExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbProjectExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRefExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbScanExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbSkipExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbSortExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbTreatExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression);
        public abstract TResultType Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression);
    }
    public sealed partial class DbFilterExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbFilterExpression() { }
        public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbFunctionAggregate : System.Data.Common.CommandTrees.DbAggregate
    {
        internal DbFunctionAggregate() { }
        public bool Distinct { get { throw null; } }
        public System.Data.Metadata.Edm.EdmFunction Function { get { throw null; } }
    }
    public sealed partial class DbFunctionCommandTree : System.Data.Common.CommandTrees.DbCommandTree
    {
        internal DbFunctionCommandTree() { }
        public System.Data.Metadata.Edm.EdmFunction EdmFunction { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
    }
    public sealed partial class DbFunctionExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbFunctionExpression() { }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
        public System.Data.Metadata.Edm.EdmFunction Function { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbGroupAggregate : System.Data.Common.CommandTrees.DbAggregate
    {
        internal DbGroupAggregate() { }
    }
    public sealed partial class DbGroupByExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbGroupByExpression() { }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbAggregate> Aggregates { get { throw null; } }
        public System.Data.Common.CommandTrees.DbGroupExpressionBinding Input { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Keys { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbGroupExpressionBinding
    {
        internal DbGroupExpressionBinding() { }
        public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
        public System.Data.Common.CommandTrees.DbGroupAggregate GroupAggregate { get { throw null; } }
        public System.Data.Common.CommandTrees.DbVariableReferenceExpression GroupVariable { get { throw null; } }
        public string GroupVariableName { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage GroupVariableType { get { throw null; } }
        public System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable { get { throw null; } }
        public string VariableName { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage VariableType { get { throw null; } }
    }
    public sealed partial class DbInsertCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
    {
        internal DbInsertCommandTree() { }
        public System.Data.Common.CommandTrees.DbExpression Returning { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbModificationClause> SetClauses { get { throw null; } }
    }
    public sealed partial class DbIntersectExpression : System.Data.Common.CommandTrees.DbBinaryExpression
    {
        internal DbIntersectExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbIsEmptyExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbIsEmptyExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbIsNullExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbIsNullExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbIsOfExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbIsOfExpression() { }
        public System.Data.Metadata.Edm.TypeUsage OfType { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbJoinExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbJoinExpression() { }
        public System.Data.Common.CommandTrees.DbExpression JoinCondition { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpressionBinding Left { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpressionBinding Right { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbLambda
    {
        internal DbLambda() { }
        public System.Data.Common.CommandTrees.DbExpression Body { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbVariableReferenceExpression> Variables { get { throw null; } }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Common.CommandTrees.DbExpression body, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> variables) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Common.CommandTrees.DbExpression body, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Data.Metadata.Edm.TypeUsage argument15Type, System.Data.Metadata.Edm.TypeUsage argument16Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Data.Metadata.Edm.TypeUsage argument15Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
    }
    public sealed partial class DbLambdaExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbLambdaExpression() { }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
        public System.Data.Common.CommandTrees.DbLambda Lambda { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbLikeExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbLikeExpression() { }
        public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Escape { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Pattern { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbLimitExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbLimitExpression() { }
        public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Limit { get { throw null; } }
        public bool WithTies { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public abstract partial class DbModificationClause
    {
        internal DbModificationClause() { }
    }
    public abstract partial class DbModificationCommandTree : System.Data.Common.CommandTrees.DbCommandTree
    {
        internal DbModificationCommandTree() { }
        public System.Data.Common.CommandTrees.DbExpressionBinding Target { get { throw null; } }
    }
    public sealed partial class DbNewInstanceExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbNewInstanceExpression() { }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbNotExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbNotExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbNullExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbNullExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbOfTypeExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbOfTypeExpression() { }
        public System.Data.Metadata.Edm.TypeUsage OfType { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbOrExpression : System.Data.Common.CommandTrees.DbBinaryExpression
    {
        internal DbOrExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbParameterReferenceExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbParameterReferenceExpression() { }
        public string ParameterName { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbProjectExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbProjectExpression() { }
        public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Projection { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbPropertyExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbPropertyExpression() { }
        public System.Data.Common.CommandTrees.DbExpression Instance { get { throw null; } }
        public System.Data.Metadata.Edm.EdmMember Property { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
        public static implicit operator System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> (System.Data.Common.CommandTrees.DbPropertyExpression value) { throw null; }
        public System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> ToKeyValuePair() { throw null; }
    }
    public sealed partial class DbQuantifierExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbQuantifierExpression() { }
        public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbQueryCommandTree : System.Data.Common.CommandTrees.DbCommandTree
    {
        internal DbQueryCommandTree() { }
        public System.Data.Common.CommandTrees.DbExpression Query { get { throw null; } }
    }
    public sealed partial class DbRefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbRefExpression() { }
        public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbRefKeyExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbRefKeyExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbRelationshipNavigationExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbRelationshipNavigationExpression() { }
        public System.Data.Metadata.Edm.RelationshipEndMember NavigateFrom { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipEndMember NavigateTo { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression NavigationSource { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipType Relationship { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbScanExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbScanExpression() { }
        public System.Data.Metadata.Edm.EntitySetBase Target { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbSetClause : System.Data.Common.CommandTrees.DbModificationClause
    {
        internal DbSetClause() { }
        public System.Data.Common.CommandTrees.DbExpression Property { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Value { get { throw null; } }
    }
    public sealed partial class DbSkipExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbSkipExpression() { }
        public System.Data.Common.CommandTrees.DbExpression Count { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> SortOrder { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbSortClause
    {
        internal DbSortClause() { }
        public bool Ascending { get { throw null; } }
        public string Collation { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
    }
    public sealed partial class DbSortExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbSortExpression() { }
        public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> SortOrder { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbTreatExpression : System.Data.Common.CommandTrees.DbUnaryExpression
    {
        internal DbTreatExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public abstract partial class DbUnaryExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbUnaryExpression() { }
        public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
    }
    public sealed partial class DbUnionAllExpression : System.Data.Common.CommandTrees.DbBinaryExpression
    {
        internal DbUnionAllExpression() { }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public sealed partial class DbUpdateCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
    {
        internal DbUpdateCommandTree() { }
        public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
        public System.Data.Common.CommandTrees.DbExpression Returning { get { throw null; } }
        public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbModificationClause> SetClauses { get { throw null; } }
    }
    public sealed partial class DbVariableReferenceExpression : System.Data.Common.CommandTrees.DbExpression
    {
        internal DbVariableReferenceExpression() { }
        public string VariableName { get { throw null; } }
        public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
        public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
    }
    public partial class DefaultExpressionVisitor : System.Data.Common.CommandTrees.DbExpressionVisitor<System.Data.Common.CommandTrees.DbExpression>
    {
        protected DefaultExpressionVisitor() { }
        protected virtual void OnEnterScope(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> scopeVariables) { }
        protected virtual void OnExitScope() { }
        protected virtual void OnExpressionReplaced(System.Data.Common.CommandTrees.DbExpression oldExpression, System.Data.Common.CommandTrees.DbExpression newExpression) { }
        protected virtual void OnVariableRebound(System.Data.Common.CommandTrees.DbVariableReferenceExpression fromVarRef, System.Data.Common.CommandTrees.DbVariableReferenceExpression toVarRef) { }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbAndExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbApplyExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCaseExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCastExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbConstantExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbDerefExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbElementExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbExceptExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbFilterExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbJoinExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLikeExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLimitExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNotExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNullExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbOrExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbProjectExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRefExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbScanExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbSkipExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbSortExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbTreatExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression) { throw null; }
        public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbAggregate VisitAggregate(System.Data.Common.CommandTrees.DbAggregate aggregate) { throw null; }
        protected virtual System.Data.Metadata.Edm.EntitySetBase VisitEntitySet(System.Data.Metadata.Edm.EntitySetBase entitySet) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbExpression VisitExpression(System.Data.Common.CommandTrees.DbExpression expression) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbExpressionBinding VisitExpressionBinding(System.Data.Common.CommandTrees.DbExpressionBinding binding) { throw null; }
        protected virtual System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> VisitExpressionBindingList(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> list) { throw null; }
        protected virtual System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> VisitExpressionList(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> list) { throw null; }
        protected virtual System.Data.Metadata.Edm.EdmFunction VisitFunction(System.Data.Metadata.Edm.EdmFunction functionMetadata) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbFunctionAggregate VisitFunctionAggregate(System.Data.Common.CommandTrees.DbFunctionAggregate aggregate) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbGroupAggregate VisitGroupAggregate(System.Data.Common.CommandTrees.DbGroupAggregate aggregate) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbGroupExpressionBinding VisitGroupExpressionBinding(System.Data.Common.CommandTrees.DbGroupExpressionBinding binding) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbLambda VisitLambda(System.Data.Common.CommandTrees.DbLambda lambda) { throw null; }
        protected virtual System.Data.Common.CommandTrees.DbSortClause VisitSortClause(System.Data.Common.CommandTrees.DbSortClause clause) { throw null; }
        protected virtual System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> VisitSortOrder(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> sortOrder) { throw null; }
        protected virtual System.Data.Metadata.Edm.EdmType VisitType(System.Data.Metadata.Edm.EdmType type) { throw null; }
        protected virtual System.Data.Metadata.Edm.TypeUsage VisitTypeUsage(System.Data.Metadata.Edm.TypeUsage type) { throw null; }
    }
}
namespace System.Data.Common.CommandTrees.ExpressionBuilder
{
    public static partial class DbExpressionBuilder
    {
        public static System.Data.Common.CommandTrees.DbConstantExpression False { get { throw null; } }
        public static System.Data.Common.CommandTrees.DbConstantExpression True { get { throw null; } }
        public static System.Data.Common.CommandTrees.DbFunctionAggregate Aggregate(this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionAggregate AggregateDistinct(this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbQuantifierExpression All(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate) { throw null; }
        public static System.Data.Common.CommandTrees.DbQuantifierExpression All(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate) { throw null; }
        public static System.Data.Common.CommandTrees.DbAndExpression And(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression Any(this System.Data.Common.CommandTrees.DbExpression source) { throw null; }
        public static System.Data.Common.CommandTrees.DbQuantifierExpression Any(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate) { throw null; }
        public static System.Data.Common.CommandTrees.DbQuantifierExpression Any(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate) { throw null; }
        public static System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbAggregate> As(this System.Data.Common.CommandTrees.DbAggregate value, string alias) { throw null; }
        public static System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> As(this System.Data.Common.CommandTrees.DbExpression value, string alias) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpressionBinding Bind(this System.Data.Common.CommandTrees.DbExpression input) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpressionBinding BindAs(this System.Data.Common.CommandTrees.DbExpression input, string varName) { throw null; }
        public static System.Data.Common.CommandTrees.DbCaseExpression Case(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> whenExpressions, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> thenExpressions, System.Data.Common.CommandTrees.DbExpression elseExpression) { throw null; }
        public static System.Data.Common.CommandTrees.DbCastExpression CastTo(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage toType) { throw null; }
        public static System.Data.Common.CommandTrees.DbConstantExpression Constant(this System.Data.Metadata.Edm.TypeUsage constantType, object value) { throw null; }
        public static System.Data.Common.CommandTrees.DbConstantExpression Constant(object value) { throw null; }
        public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> keyValues) { throw null; }
        public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, params System.Data.Common.CommandTrees.DbExpression[] keyValues) { throw null; }
        public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Metadata.Edm.EntityType entityType, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> keyValues) { throw null; }
        public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Metadata.Edm.EntityType entityType, params System.Data.Common.CommandTrees.DbExpression[] keyValues) { throw null; }
        public static System.Data.Common.CommandTrees.DbApplyExpression CrossApply(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> apply) { throw null; }
        public static System.Data.Common.CommandTrees.DbApplyExpression CrossApply(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply) { throw null; }
        public static System.Data.Common.CommandTrees.DbCrossJoinExpression CrossJoin(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpressionBinding> inputs) { throw null; }
        public static System.Data.Common.CommandTrees.DbDerefExpression Deref(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbDistinctExpression Distinct(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbArithmeticExpression Divide(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbElementExpression Element(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbComparisonExpression Equal(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbExceptExpression Except(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression Exists(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFilterExpression Filter(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate) { throw null; }
        public static System.Data.Common.CommandTrees.DbJoinExpression FullOuterJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition) { throw null; }
        public static System.Data.Common.CommandTrees.DbJoinExpression FullOuterJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition) { throw null; }
        public static System.Data.Common.CommandTrees.DbEntityRefExpression GetEntityRef(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbRefKeyExpression GetRefKey(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbComparisonExpression GreaterThan(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbComparisonExpression GreaterThanOrEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbGroupExpressionBinding GroupBind(this System.Data.Common.CommandTrees.DbExpression input) { throw null; }
        public static System.Data.Common.CommandTrees.DbGroupExpressionBinding GroupBindAs(this System.Data.Common.CommandTrees.DbExpression input, string varName, string groupVarName) { throw null; }
        public static System.Data.Common.CommandTrees.DbGroupByExpression GroupBy(this System.Data.Common.CommandTrees.DbGroupExpressionBinding input, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> keys, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbAggregate>> aggregates) { throw null; }
        public static System.Data.Common.CommandTrees.DbJoinExpression InnerJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition) { throw null; }
        public static System.Data.Common.CommandTrees.DbJoinExpression InnerJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition) { throw null; }
        public static System.Data.Common.CommandTrees.DbIntersectExpression Intersect(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambdaExpression Invoke(this System.Data.Common.CommandTrees.DbLambda lambda, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambdaExpression Invoke(this System.Data.Common.CommandTrees.DbLambda lambda, params System.Data.Common.CommandTrees.DbExpression[] arguments) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Invoke(this System.Data.Metadata.Edm.EdmFunction function, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Invoke(this System.Data.Metadata.Edm.EdmFunction function, params System.Data.Common.CommandTrees.DbExpression[] arguments) { throw null; }
        public static System.Data.Common.CommandTrees.DbIsEmptyExpression IsEmpty(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbIsNullExpression IsNull(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbIsOfExpression IsOf(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
        public static System.Data.Common.CommandTrees.DbIsOfExpression IsOfOnly(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
        public static System.Data.Common.CommandTrees.DbJoinExpression Join(this System.Data.Common.CommandTrees.DbExpression outer, System.Data.Common.CommandTrees.DbExpression inner, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> outerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> innerKey) { throw null; }
        public static System.Data.Common.CommandTrees.DbProjectExpression Join<TSelector>(this System.Data.Common.CommandTrees.DbExpression outer, System.Data.Common.CommandTrees.DbExpression inner, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> outerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> innerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, TSelector> selector) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Lambda(System.Data.Common.CommandTrees.DbExpression body, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> variables) { throw null; }
        public static System.Data.Common.CommandTrees.DbLambda Lambda(System.Data.Common.CommandTrees.DbExpression body, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables) { throw null; }
        public static System.Data.Common.CommandTrees.DbJoinExpression LeftOuterJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition) { throw null; }
        public static System.Data.Common.CommandTrees.DbJoinExpression LeftOuterJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition) { throw null; }
        public static System.Data.Common.CommandTrees.DbComparisonExpression LessThan(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbComparisonExpression LessThanOrEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbLikeExpression Like(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression pattern) { throw null; }
        public static System.Data.Common.CommandTrees.DbLikeExpression Like(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression pattern, System.Data.Common.CommandTrees.DbExpression escape) { throw null; }
        public static System.Data.Common.CommandTrees.DbLimitExpression Limit(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
        public static System.Data.Common.CommandTrees.DbArithmeticExpression Minus(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbArithmeticExpression Modulo(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbArithmeticExpression Multiply(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbRelationshipNavigationExpression Navigate(this System.Data.Common.CommandTrees.DbExpression navigateFrom, System.Data.Metadata.Edm.RelationshipEndMember fromEnd, System.Data.Metadata.Edm.RelationshipEndMember toEnd) { throw null; }
        public static System.Data.Common.CommandTrees.DbRelationshipNavigationExpression Navigate(this System.Data.Metadata.Edm.RelationshipType type, string fromEndName, string toEndName, System.Data.Common.CommandTrees.DbExpression navigateFrom) { throw null; }
        public static System.Data.Common.CommandTrees.DbArithmeticExpression Negate(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbNewInstanceExpression New(this System.Data.Metadata.Edm.TypeUsage instanceType, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments) { throw null; }
        public static System.Data.Common.CommandTrees.DbNewInstanceExpression New(this System.Data.Metadata.Edm.TypeUsage instanceType, params System.Data.Common.CommandTrees.DbExpression[] arguments) { throw null; }
        public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewCollection(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> elements) { throw null; }
        public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewCollection(params System.Data.Common.CommandTrees.DbExpression[] elements) { throw null; }
        public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewEmptyCollection(this System.Data.Metadata.Edm.TypeUsage collectionType) { throw null; }
        public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewRow(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> columnValues) { throw null; }
        public static System.Data.Common.CommandTrees.DbNotExpression Not(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbComparisonExpression NotEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbNullExpression Null(this System.Data.Metadata.Edm.TypeUsage nullType) { throw null; }
        public static System.Data.Common.CommandTrees.DbOfTypeExpression OfType(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
        public static System.Data.Common.CommandTrees.DbOfTypeExpression OfTypeOnly(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
        public static System.Data.Common.CommandTrees.DbOrExpression Or(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression OrderBy(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression OrderBy(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression OrderByDescending(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression OrderByDescending(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
        public static System.Data.Common.CommandTrees.DbApplyExpression OuterApply(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> apply) { throw null; }
        public static System.Data.Common.CommandTrees.DbApplyExpression OuterApply(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply) { throw null; }
        public static System.Data.Common.CommandTrees.DbParameterReferenceExpression Parameter(this System.Data.Metadata.Edm.TypeUsage type, string name) { throw null; }
        public static System.Data.Common.CommandTrees.DbArithmeticExpression Plus(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbProjectExpression Project(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression projection) { throw null; }
        public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.EdmProperty propertyMetadata) { throw null; }
        public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.NavigationProperty navigationProperty) { throw null; }
        public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.RelationshipEndMember relationshipEnd) { throw null; }
        public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, string propertyName) { throw null; }
        public static System.Data.Common.CommandTrees.DbRefExpression RefFromKey(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Common.CommandTrees.DbExpression keyRow) { throw null; }
        public static System.Data.Common.CommandTrees.DbRefExpression RefFromKey(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Common.CommandTrees.DbExpression keyRow, System.Data.Metadata.Edm.EntityType entityType) { throw null; }
        public static System.Data.Common.CommandTrees.DbScanExpression Scan(this System.Data.Metadata.Edm.EntitySetBase targetSet) { throw null; }
        public static System.Data.Common.CommandTrees.DbProjectExpression SelectMany(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> apply) { throw null; }
        public static System.Data.Common.CommandTrees.DbProjectExpression SelectMany<TSelector>(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> apply, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, TSelector> selector) { throw null; }
        public static System.Data.Common.CommandTrees.DbProjectExpression Select<TProjection>(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, TProjection> projection) { throw null; }
        public static System.Data.Common.CommandTrees.DbSkipExpression Skip(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbSortClause> sortOrder, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
        public static System.Data.Common.CommandTrees.DbSkipExpression Skip(this System.Data.Common.CommandTrees.DbSortExpression argument, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression Sort(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbSortClause> sortOrder) { throw null; }
        public static System.Data.Common.CommandTrees.DbLimitExpression Take(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression ThenBy(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression ThenBy(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression ThenByDescending(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortExpression ThenByDescending(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortClause ToSortClause(this System.Data.Common.CommandTrees.DbExpression key) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortClause ToSortClause(this System.Data.Common.CommandTrees.DbExpression key, string collation) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortClause ToSortClauseDescending(this System.Data.Common.CommandTrees.DbExpression key) { throw null; }
        public static System.Data.Common.CommandTrees.DbSortClause ToSortClauseDescending(this System.Data.Common.CommandTrees.DbExpression key, string collation) { throw null; }
        public static System.Data.Common.CommandTrees.DbTreatExpression TreatAs(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage treatType) { throw null; }
        public static System.Data.Common.CommandTrees.DbArithmeticExpression UnaryMinus(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression Union(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbUnionAllExpression UnionAll(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
        public static System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable(this System.Data.Metadata.Edm.TypeUsage type, string name) { throw null; }
        public static System.Data.Common.CommandTrees.DbFilterExpression Where(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate) { throw null; }
    }
    public static partial class EdmFunctions
    {
        public static System.Data.Common.CommandTrees.DbFunctionExpression Abs(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddDays(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddHours(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddMicroseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddMilliseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddMinutes(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddMonths(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddNanoseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddSeconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AddYears(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Average(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseAnd(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseNot(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseOr(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseXor(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Ceiling(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Concat(this System.Data.Common.CommandTrees.DbExpression string1, System.Data.Common.CommandTrees.DbExpression string2) { throw null; }
        public static System.Data.Common.CommandTrees.DbExpression Contains(this System.Data.Common.CommandTrees.DbExpression searchedString, System.Data.Common.CommandTrees.DbExpression searchedForString) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Count(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression CreateDateTime(System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression CreateDateTimeOffset(System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second, System.Data.Common.CommandTrees.DbExpression timeZoneOffset) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression CreateTime(System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentDateTime() { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentDateTimeOffset() { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentUtcDateTime() { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Day(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DayOfYear(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffDays(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffHours(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMicroseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMilliseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMinutes(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMonths(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffNanoseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffSeconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression DiffYears(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression EndsWith(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression suffix) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Floor(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GetTotalOffsetMinutes(this System.Data.Common.CommandTrees.DbExpression dateTimeOffsetArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Hour(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression IndexOf(this System.Data.Common.CommandTrees.DbExpression searchString, System.Data.Common.CommandTrees.DbExpression stringToFind) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Left(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression length) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Length(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression LongCount(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Max(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Millisecond(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Min(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Minute(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Month(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression NewGuid() { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Power(this System.Data.Common.CommandTrees.DbExpression baseArgument, System.Data.Common.CommandTrees.DbExpression exponent) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Replace(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression toReplace, System.Data.Common.CommandTrees.DbExpression replacement) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Reverse(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Right(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression length) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Round(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Round(this System.Data.Common.CommandTrees.DbExpression value, System.Data.Common.CommandTrees.DbExpression digits) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Second(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression StartsWith(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression prefix) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression StDev(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression StDevP(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Substring(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression start, System.Data.Common.CommandTrees.DbExpression length) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Sum(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression ToLower(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression ToUpper(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Trim(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression TrimEnd(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression TrimStart(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Truncate(this System.Data.Common.CommandTrees.DbExpression value, System.Data.Common.CommandTrees.DbExpression digits) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression TruncateTime(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Var(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression VarP(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Year(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
    }
    public sealed partial class Row
    {
        public Row(System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> columnValue, params System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>[] columnValues) { }
        public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Data.Common.CommandTrees.ExpressionBuilder.Row row) { throw null; }
        public System.Data.Common.CommandTrees.DbNewInstanceExpression ToExpression() { throw null; }
    }
}
namespace System.Data.Common.CommandTrees.ExpressionBuilder.Spatial
{
    public static partial class SpatialEdmFunctions
    {
        public static System.Data.Common.CommandTrees.DbFunctionExpression Area(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AsBinary(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AsGml(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression AsText(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Centroid(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression CoordinateSystemId(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Distance(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Elevation(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression EndPoint(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression ExteriorRing(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyCollectionFromBinary(System.Data.Common.CommandTrees.DbExpression geographyCollectionWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyCollectionFromText(System.Data.Common.CommandTrees.DbExpression geographyCollectionWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromGml(System.Data.Common.CommandTrees.DbExpression geographyMarkup) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromGml(System.Data.Common.CommandTrees.DbExpression geographyMarkup, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyLineFromBinary(System.Data.Common.CommandTrees.DbExpression lineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyLineFromText(System.Data.Common.CommandTrees.DbExpression lineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiLineFromBinary(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiLineFromText(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPointFromBinary(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPointFromText(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPolygonFromText(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPointFromBinary(System.Data.Common.CommandTrees.DbExpression pointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPointFromText(System.Data.Common.CommandTrees.DbExpression pointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression polygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPolygonFromText(System.Data.Common.CommandTrees.DbExpression polygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryCollectionFromBinary(System.Data.Common.CommandTrees.DbExpression geometryCollectionWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryCollectionFromText(System.Data.Common.CommandTrees.DbExpression geometryCollectionWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromGml(System.Data.Common.CommandTrees.DbExpression geometryMarkup) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromGml(System.Data.Common.CommandTrees.DbExpression geometryMarkup, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryLineFromBinary(System.Data.Common.CommandTrees.DbExpression lineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryLineFromText(System.Data.Common.CommandTrees.DbExpression lineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiLineFromBinary(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiLineFromText(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPointFromBinary(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPointFromText(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPolygonFromText(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPointFromBinary(System.Data.Common.CommandTrees.DbExpression pointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPointFromText(System.Data.Common.CommandTrees.DbExpression pointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression polygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPolygonFromText(System.Data.Common.CommandTrees.DbExpression polygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression InteriorRingAt(this System.Data.Common.CommandTrees.DbExpression geometryValue, System.Data.Common.CommandTrees.DbExpression indexValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression InteriorRingCount(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression IsClosedSpatial(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression IsEmptySpatial(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression IsRing(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression IsSimpleGeometry(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression IsValidGeometry(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Latitude(this System.Data.Common.CommandTrees.DbExpression geographyValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Longitude(this System.Data.Common.CommandTrees.DbExpression geographyValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression Measure(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression PointAt(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression indexValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression PointCount(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression PointOnSurface(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialBoundary(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialBuffer(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression distance) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialContains(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialConvexHull(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialCrosses(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialDifference(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialDimension(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialDisjoint(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialElementAt(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression indexValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialElementCount(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialEnvelope(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialEquals(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialIntersection(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialIntersects(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialLength(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialOverlaps(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialRelate(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2, System.Data.Common.CommandTrees.DbExpression intersectionPatternMatrix) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialSymmetricDifference(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialTouches(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialTypeName(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialUnion(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialWithin(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression StartPoint(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression XCoordinate(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
        public static System.Data.Common.CommandTrees.DbFunctionExpression YCoordinate(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
    }
}
namespace System.Data.Common.EntitySql
{
    public sealed partial class EntitySqlParser
    {
        internal EntitySqlParser() { }
        public System.Data.Common.EntitySql.ParseResult Parse(string query, params System.Data.Common.CommandTrees.DbParameterReferenceExpression[] parameters) { throw null; }
        public System.Data.Common.CommandTrees.DbLambda ParseLambda(string query, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables) { throw null; }
    }
    public sealed partial class FunctionDefinition
    {
        internal FunctionDefinition() { }
        public int EndPosition { get { throw null; } }
        public System.Data.Common.CommandTrees.DbLambda Lambda { get { throw null; } }
        public string Name { get { throw null; } }
        public int StartPosition { get { throw null; } }
    }
    public sealed partial class ParseResult
    {
        internal ParseResult() { }
        public System.Data.Common.CommandTrees.DbCommandTree CommandTree { get { throw null; } }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.EntitySql.FunctionDefinition> FunctionDefinitions { get { throw null; } }
    }
}
namespace System.Data.EntityClient
{
    public sealed partial class EntityCommand : System.Data.Common.DbCommand
    {
        public EntityCommand() { }
        public EntityCommand(string statement) { }
        public EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection) { }
        public EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection, System.Data.EntityClient.EntityTransaction transaction) { }
        public override string CommandText { get { throw null; } set { } }
        public override int CommandTimeout { get { throw null; } set { } }
        public System.Data.Common.CommandTrees.DbCommandTree CommandTree { get { throw null; } set { } }
        public override System.Data.CommandType CommandType { get { throw null; } set { } }
        public new System.Data.EntityClient.EntityConnection Connection { get { throw null; } set { } }
        protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
        protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
        protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
        public override bool DesignTimeVisible { get { throw null; } set { } }
        public bool EnablePlanCaching { get { throw null; } set { } }
        public new System.Data.EntityClient.EntityParameterCollection Parameters { get { throw null; } }
        public new System.Data.EntityClient.EntityTransaction Transaction { get { throw null; } set { } }
        public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
        public override void Cancel() { }
        protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
        public new System.Data.EntityClient.EntityParameter CreateParameter() { throw null; }
        protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
        public override int ExecuteNonQuery() { throw null; }
        public new System.Data.EntityClient.EntityDataReader ExecuteReader() { throw null; }
        public new System.Data.EntityClient.EntityDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
        public override object ExecuteScalar() { throw null; }
        public override void Prepare() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        public string ToTraceString() { throw null; }
    }
    public sealed partial class EntityConnection : System.Data.Common.DbConnection
    {
        public EntityConnection() { }
        public EntityConnection(System.Data.Metadata.Edm.MetadataWorkspace workspace, System.Data.Common.DbConnection connection) { }
        public EntityConnection(string connectionString) { }
        public override string ConnectionString { get { throw null; } set { } }
        public override int ConnectionTimeout { get { throw null; } }
        public override string Database { get { throw null; } }
        public override string DataSource { get { throw null; } }
        protected override System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
        public override string ServerVersion { get { throw null; } }
        public override System.Data.ConnectionState State { get { throw null; } }
        public System.Data.Common.DbConnection StoreConnection { get { throw null; } }
        protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
        public new System.Data.EntityClient.EntityTransaction BeginTransaction() { throw null; }
        public new System.Data.EntityClient.EntityTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
        public override void ChangeDatabase(string databaseName) { }
        public override void Close() { }
        public new System.Data.EntityClient.EntityCommand CreateCommand() { throw null; }
        protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
        protected override void Dispose(bool disposing) { }
        public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
        [System.CLSCompliantAttribute(false)]
        public System.Data.Metadata.Edm.MetadataWorkspace GetMetadataWorkspace() { throw null; }
        public override void Open() { }
    }
    public sealed partial class EntityConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
    {
        public EntityConnectionStringBuilder() { }
        public EntityConnectionStringBuilder(string connectionString) { }
        public override bool IsFixedSize { get { throw null; } }
        public override object this[string keyword] { get { throw null; } set { } }
        public override System.Collections.ICollection Keys { get { throw null; } }
        [System.ComponentModel.DisplayNameAttribute("Metadata")]
        [System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
        public string Metadata { get { throw null; } set { } }
        [System.ComponentModel.DisplayNameAttribute("Name")]
        [System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
        public string Name { get { throw null; } set { } }
        [System.ComponentModel.DisplayNameAttribute("Provider")]
        [System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
        public string Provider { get { throw null; } set { } }
        [System.ComponentModel.DisplayNameAttribute("Provider Connection String")]
        [System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
        public string ProviderConnectionString { get { throw null; } set { } }
        public override void Clear() { }
        public override bool ContainsKey(string keyword) { throw null; }
        public override bool Remove(string keyword) { throw null; }
        public override bool TryGetValue(string keyword, out object value) { throw null; }
    }
    public partial class EntityDataReader : System.Data.Common.DbDataReader, System.Data.IDataRecord, System.Data.IExtendedDataRecord
    {
        internal EntityDataReader() { }
        public System.Data.Common.DataRecordInfo DataRecordInfo { get { throw null; } }
        public override int Depth { get { throw null; } }
        public override int FieldCount { get { throw null; } }
        public override bool HasRows { get { throw null; } }
        public override bool IsClosed { get { throw null; } }
        public override object this[int ordinal] { get { throw null; } }
        public override object this[string name] { get { throw null; } }
        public override int RecordsAffected { get { throw null; } }
        public override int VisibleFieldCount { get { throw null; } }
        public override void Close() { }
        protected override void Dispose(bool disposing) { }
        public override bool GetBoolean(int ordinal) { throw null; }
        public override byte GetByte(int ordinal) { throw null; }
        public override long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length) { throw null; }
        public override char GetChar(int ordinal) { throw null; }
        public override long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length) { throw null; }
        public System.Data.Common.DbDataReader GetDataReader(int i) { throw null; }
        public System.Data.Common.DbDataRecord GetDataRecord(int i) { throw null; }
        public override string GetDataTypeName(int ordinal) { throw null; }
        public override System.DateTime GetDateTime(int ordinal) { throw null; }
        protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
        public override decimal GetDecimal(int ordinal) { throw null; }
        public override double GetDouble(int ordinal) { throw null; }
        public override System.Collections.IEnumerator GetEnumerator() { throw null; }
        public override System.Type GetFieldType(int ordinal) { throw null; }
        public override float GetFloat(int ordinal) { throw null; }
        public override System.Guid GetGuid(int ordinal) { throw null; }
        public override short GetInt16(int ordinal) { throw null; }
        public override int GetInt32(int ordinal) { throw null; }
        public override long GetInt64(int ordinal) { throw null; }
        public override string GetName(int ordinal) { throw null; }
        public override int GetOrdinal(string name) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        public override System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        public override object GetProviderSpecificValue(int ordinal) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        public override int GetProviderSpecificValues(object[] values) { throw null; }
        public override System.Data.DataTable GetSchemaTable() { throw null; }
        public override string GetString(int ordinal) { throw null; }
        public override object GetValue(int ordinal) { throw null; }
        public override int GetValues(object[] values) { throw null; }
        public override bool IsDBNull(int ordinal) { throw null; }
        public override bool NextResult() { throw null; }
        public override bool Read() { throw null; }
    }
    public sealed partial class EntityParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter
    {
        public EntityParameter() { }
        public EntityParameter(string parameterName, System.Data.DbType dbType) { }
        public EntityParameter(string parameterName, System.Data.DbType dbType, int size) { }
        public EntityParameter(string parameterName, System.Data.DbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, object value) { }
        public EntityParameter(string parameterName, System.Data.DbType dbType, int size, string sourceColumn) { }
        public override System.Data.DbType DbType { get { throw null; } set { } }
        [System.ComponentModel.RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties.All)]
        public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
        public System.Data.Metadata.Edm.EdmType EdmType { get { throw null; } set { } }
        public override bool IsNullable { get { throw null; } set { } }
        public override string ParameterName { get { throw null; } set { } }
        public new byte Precision { get { throw null; } set { } }
        public new byte Scale { get { throw null; } set { } }
        public override int Size { get { throw null; } set { } }
        public override string SourceColumn { get { throw null; } set { } }
        public override bool SourceColumnNullMapping { get { throw null; } set { } }
        public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
        public override object Value { get { throw null; } set { } }
        public override void ResetDbType() { }
        public override string ToString() { throw null; }
    }
    public sealed partial class EntityParameterCollection : System.Data.Common.DbParameterCollection
    {
        internal EntityParameterCollection() { }
        public override int Count { get { throw null; } }
        public override bool IsFixedSize { get { throw null; } }
        public override bool IsReadOnly { get { throw null; } }
        public override bool IsSynchronized { get { throw null; } }
        public new System.Data.EntityClient.EntityParameter this[int index] { get { throw null; } set { } }
        public new System.Data.EntityClient.EntityParameter this[string parameterName] { get { throw null; } set { } }
        public override object SyncRoot { get { throw null; } }
        public System.Data.EntityClient.EntityParameter Add(System.Data.EntityClient.EntityParameter value) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        public override int Add(object value) { throw null; }
        public System.Data.EntityClient.EntityParameter Add(string parameterName, System.Data.DbType dbType) { throw null; }
        public System.Data.EntityClient.EntityParameter Add(string parameterName, System.Data.DbType dbType, int size) { throw null; }
        public override void AddRange(System.Array values) { }
        public void AddRange(System.Data.EntityClient.EntityParameter[] values) { }
        public System.Data.EntityClient.EntityParameter AddWithValue(string parameterName, object value) { throw null; }
        public override void Clear() { }
        public override bool Contains(object value) { throw null; }
        public override bool Contains(string parameterName) { throw null; }
        public override void CopyTo(System.Array array, int index) { }
        public void CopyTo(System.Data.EntityClient.EntityParameter[] array, int index) { }
        public override System.Collections.IEnumerator GetEnumerator() { throw null; }
        protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
        protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
        public int IndexOf(System.Data.EntityClient.EntityParameter value) { throw null; }
        public override int IndexOf(object value) { throw null; }
        public override int IndexOf(string parameterName) { throw null; }
        public void Insert(int index, System.Data.EntityClient.EntityParameter value) { }
        public override void Insert(int index, object value) { }
        public void Remove(System.Data.EntityClient.EntityParameter value) { }
        public override void Remove(object value) { }
        public override void RemoveAt(int index) { }
        public override void RemoveAt(string parameterName) { }
        protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
        protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
    }
    public sealed partial class EntityProviderFactory : System.Data.Common.DbProviderFactory, System.IServiceProvider
    {
        internal EntityProviderFactory() { }
        public static readonly System.Data.EntityClient.EntityProviderFactory Instance;
        public override System.Data.Common.DbCommand CreateCommand() { throw null; }
        public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
        public override System.Data.Common.DbConnection CreateConnection() { throw null; }
        public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
        public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
        public override System.Data.Common.DbParameter CreateParameter() { throw null; }
        public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
        object System.IServiceProvider.GetService(System.Type serviceType) { throw null; }
    }
    public sealed partial class EntityTransaction : System.Data.Common.DbTransaction
    {
        internal EntityTransaction() { }
        public new System.Data.EntityClient.EntityConnection Connection { get { throw null; } }
        protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
        public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
        public override void Commit() { }
        protected override void Dispose(bool disposing) { }
        public override void Rollback() { }
    }
}
namespace System.Data.Mapping
{
    public abstract partial class EntityViewContainer
    {
        protected EntityViewContainer() { }
        public string EdmEntityContainerName { get { throw null; } set { } }
        public string HashOverAllExtentViews { get { throw null; } set { } }
        public string HashOverMappingClosure { get { throw null; } set { } }
        public string StoreEntityContainerName { get { throw null; } set { } }
        public int ViewCount { get { throw null; } protected set { } }
        protected abstract System.Collections.Generic.KeyValuePair<string, string> GetViewAt(int index);
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true)]
    public sealed partial class EntityViewGenerationAttribute : System.Attribute
    {
        public EntityViewGenerationAttribute(System.Type viewGenerationType) { }
        public System.Type ViewGenerationType { get { throw null; } }
    }
    [System.CLSCompliantAttribute(false)]
    public abstract partial class MappingItemCollection : System.Data.Metadata.Edm.ItemCollection
    {
        internal MappingItemCollection() { }
    }
    [System.CLSCompliantAttribute(false)]
    public partial class StorageMappingItemCollection : System.Data.Mapping.MappingItemCollection
    {
        public StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
        public StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, params string[] filePaths) { }
        public double MappingVersion { get { throw null; } }
    }
}
namespace System.Data.Metadata.Edm
{
    public sealed partial class AssociationEndMember : System.Data.Metadata.Edm.RelationshipEndMember
    {
        internal AssociationEndMember() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
    }
    public sealed partial class AssociationSet : System.Data.Metadata.Edm.RelationshipSet
    {
        internal AssociationSet() { }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.AssociationSetEnd> AssociationSetEnds { get { throw null; } }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public new System.Data.Metadata.Edm.AssociationType ElementType { get { throw null; } }
    }
    public sealed partial class AssociationSetEnd : System.Data.Metadata.Edm.MetadataItem
    {
        internal AssociationSetEnd() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.AssociationEndMember CorrespondingAssociationEndMember { get { throw null; } }
        public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
        public string Name { get { throw null; } }
        public System.Data.Metadata.Edm.AssociationSet ParentAssociationSet { get { throw null; } }
        [System.ObsoleteAttribute("This property is going away, please use the Name property instead")]
        public string Role { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public sealed partial class AssociationType : System.Data.Metadata.Edm.RelationshipType
    {
        internal AssociationType() { }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.AssociationEndMember> AssociationEndMembers { get { throw null; } }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public bool IsForeignKey { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.ReferentialConstraint> ReferentialConstraints { get { throw null; } }
    }
    public enum BuiltInTypeKind
    {
        AssociationEndMember = 0,
        AssociationSet = 2,
        AssociationSetEnd = 1,
        AssociationType = 3,
        CollectionKind = 7,
        CollectionType = 6,
        ComplexType = 8,
        Documentation = 9,
        EdmFunction = 18,
        EdmMember = 24,
        EdmProperty = 28,
        EdmType = 11,
        EntityContainer = 12,
        EntitySet = 13,
        EntitySetBase = 4,
        EntityType = 14,
        EntityTypeBase = 5,
        EnumMember = 16,
        EnumType = 15,
        Facet = 17,
        FunctionParameter = 19,
        GlobalItem = 20,
        MetadataItem = 23,
        MetadataProperty = 21,
        NavigationProperty = 22,
        OperationAction = 10,
        ParameterMode = 25,
        PrimitiveType = 26,
        PrimitiveTypeKind = 27,
        ProviderManifest = 29,
        ReferentialConstraint = 30,
        RefType = 31,
        RelationshipEndMember = 32,
        RelationshipMultiplicity = 33,
        RelationshipSet = 34,
        RelationshipType = 35,
        RowType = 36,
        SimpleType = 37,
        StructuralType = 38,
        TypeUsage = 39,
    }
    public enum CollectionKind
    {
        Bag = 1,
        List = 2,
        None = 0,
    }
    public sealed partial class CollectionType : System.Data.Metadata.Edm.EdmType
    {
        internal CollectionType() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
    }
    public partial class ComplexType : System.Data.Metadata.Edm.StructuralType
    {
        internal ComplexType() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
    }
    public enum ConcurrencyMode
    {
        Fixed = 1,
        None = 0,
    }
    public enum DataSpace
    {
        CSpace = 1,
        CSSpace = 4,
        OCSpace = 3,
        OSpace = 0,
        SSpace = 2,
    }
    public sealed partial class Documentation : System.Data.Metadata.Edm.MetadataItem
    {
        internal Documentation() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public bool IsEmpty { get { throw null; } }
        public string LongDescription { get { throw null; } }
        public string Summary { get { throw null; } }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class EdmError
    {
        internal EdmError() { }
        public string Message { get { throw null; } }
    }
    public sealed partial class EdmFunction : System.Data.Metadata.Edm.EdmType
    {
        internal EdmFunction() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public string CommandTextAttribute { get { throw null; } }
        public override string FullName { get { throw null; } }
        public bool IsComposableAttribute { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.FunctionParameter> Parameters { get { throw null; } }
        public System.Data.Metadata.Edm.FunctionParameter ReturnParameter { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.FunctionParameter> ReturnParameters { get { throw null; } }
    }
    [System.CLSCompliantAttribute(false)]
    public sealed partial class EdmItemCollection : System.Data.Metadata.Edm.ItemCollection
    {
        public EdmItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
        public EdmItemCollection(params string[] filePaths) { }
        public double EdmVersion { get { throw null; } }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes(double edmVersion) { throw null; }
    }
    public abstract partial class EdmMember : System.Data.Metadata.Edm.MetadataItem
    {
        internal EdmMember() { }
        public System.Data.Metadata.Edm.StructuralType DeclaringType { get { throw null; } }
        public string Name { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public sealed partial class EdmProperty : System.Data.Metadata.Edm.EdmMember
    {
        internal EdmProperty() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public object DefaultValue { get { throw null; } }
        public bool Nullable { get { throw null; } }
    }
    [System.SerializableAttribute]
    public sealed partial class EdmSchemaError : System.Data.Metadata.Edm.EdmError
    {
        internal EdmSchemaError() { }
        public int Column { get { throw null; } }
        public int ErrorCode { get { throw null; } }
        public int Line { get { throw null; } }
        public string SchemaLocation { get { throw null; } }
        public string SchemaName { get { throw null; } }
        public System.Data.Metadata.Edm.EdmSchemaErrorSeverity Severity { get { throw null; } set { } }
        public string StackTrace { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public enum EdmSchemaErrorSeverity
    {
        Error = 1,
        Warning = 0,
    }
    public abstract partial class EdmType : System.Data.Metadata.Edm.GlobalItem
    {
        internal EdmType() { }
        public bool Abstract { get { throw null; } }
        public System.Data.Metadata.Edm.EdmType BaseType { get { throw null; } }
        public virtual string FullName { get { throw null; } }
        public string Name { get { throw null; } }
        public string NamespaceName { get { throw null; } }
        public System.Data.Metadata.Edm.CollectionType GetCollectionType() { throw null; }
        public override string ToString() { throw null; }
    }
    public sealed partial class EntityContainer : System.Data.Metadata.Edm.GlobalItem
    {
        internal EntityContainer() { }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EntitySetBase> BaseEntitySets { get { throw null; } }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmFunction> FunctionImports { get { throw null; } }
        public string Name { get { throw null; } }
        public System.Data.Metadata.Edm.EntitySet GetEntitySetByName(string name, bool ignoreCase) { throw null; }
        public System.Data.Metadata.Edm.RelationshipSet GetRelationshipSetByName(string name, bool ignoreCase) { throw null; }
        public override string ToString() { throw null; }
        public bool TryGetEntitySetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.EntitySet entitySet) { throw null; }
        public bool TryGetRelationshipSetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.RelationshipSet relationshipSet) { throw null; }
    }
    public partial class EntitySet : System.Data.Metadata.Edm.EntitySetBase
    {
        internal EntitySet() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public new System.Data.Metadata.Edm.EntityType ElementType { get { throw null; } }
    }
    public abstract partial class EntitySetBase : System.Data.Metadata.Edm.MetadataItem
    {
        internal EntitySetBase() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.EntityTypeBase ElementType { get { throw null; } }
        public System.Data.Metadata.Edm.EntityContainer EntityContainer { get { throw null; } }
        public string Name { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public partial class EntityType : System.Data.Metadata.Edm.EntityTypeBase
    {
        internal EntityType() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.NavigationProperty> NavigationProperties { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
        public System.Data.Metadata.Edm.RefType GetReferenceType() { throw null; }
    }
    public abstract partial class EntityTypeBase : System.Data.Metadata.Edm.StructuralType
    {
        internal EntityTypeBase() { }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmMember> KeyMembers { get { throw null; } }
    }
    public sealed partial class EnumMember : System.Data.Metadata.Edm.MetadataItem
    {
        internal EnumMember() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public string Name { get { throw null; } }
        public object Value { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public partial class EnumType : System.Data.Metadata.Edm.SimpleType
    {
        internal EnumType() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public bool IsFlags { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EnumMember> Members { get { throw null; } }
        public System.Data.Metadata.Edm.PrimitiveType UnderlyingType { get { throw null; } }
    }
    [System.Diagnostics.DebuggerDisplayAttribute("{Name,nq}={Value}")]
    public sealed partial class Facet : System.Data.Metadata.Edm.MetadataItem
    {
        internal Facet() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.FacetDescription Description { get { throw null; } }
        public System.Data.Metadata.Edm.EdmType FacetType { get { throw null; } }
        public bool IsUnbounded { get { throw null; } }
        public string Name { get { throw null; } }
        public object Value { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public sealed partial class FacetDescription
    {
        internal FacetDescription() { }
        public object DefaultValue { get { throw null; } }
        public string FacetName { get { throw null; } }
        public System.Data.Metadata.Edm.EdmType FacetType { get { throw null; } }
        public bool IsConstant { get { throw null; } }
        public bool IsRequired { get { throw null; } }
        public System.Nullable<int> MaxValue { get { throw null; } }
        public System.Nullable<int> MinValue { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public sealed partial class FunctionParameter : System.Data.Metadata.Edm.MetadataItem
    {
        internal FunctionParameter() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.EdmFunction DeclaringFunction { get { throw null; } }
        public System.Data.Metadata.Edm.ParameterMode Mode { get { throw null; } }
        public string Name { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public abstract partial class GlobalItem : System.Data.Metadata.Edm.MetadataItem
    {
        internal GlobalItem() { }
    }
    [System.CLSCompliantAttribute(false)]
    public abstract partial class ItemCollection : System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.GlobalItem>
    {
        internal ItemCollection() { }
        public System.Data.Metadata.Edm.DataSpace DataSpace { get { throw null; } }
        public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name) { throw null; }
        public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name, bool ignoreCase) { throw null; }
        protected static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(System.Collections.Generic.Dictionary<string, System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>> functionCollection, string functionName, bool ignoreCase) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string functionName) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string functionName, bool ignoreCase) { throw null; }
        public virtual System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>() where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public T GetItem<T>(string identity) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public T GetItem<T>(string identity, bool ignoreCase) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName) { throw null; }
        public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName, bool ignoreCase) { throw null; }
        public bool TryGetEntityContainer(string name, bool ignoreCase, out System.Data.Metadata.Edm.EntityContainer entityContainer) { throw null; }
        public bool TryGetEntityContainer(string name, out System.Data.Metadata.Edm.EntityContainer entityContainer) { throw null; }
        public bool TryGetItem<T>(string identity, bool ignoreCase, out T item) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public bool TryGetItem<T>(string identity, out T item) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public bool TryGetType(string name, string namespaceName, bool ignoreCase, out System.Data.Metadata.Edm.EdmType type) { throw null; }
        public bool TryGetType(string name, string namespaceName, out System.Data.Metadata.Edm.EdmType type) { throw null; }
    }
    public abstract partial class MetadataItem
    {
        internal MetadataItem() { }
        public abstract System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get; }
        public System.Data.Metadata.Edm.Documentation Documentation { get { throw null; } set { } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.MetadataProperty> MetadataProperties { get { throw null; } }
        public static System.Data.Metadata.Edm.EdmType GetBuiltInType(System.Data.Metadata.Edm.BuiltInTypeKind builtInTypeKind) { throw null; }
        public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetGeneralFacetDescriptions() { throw null; }
    }
    public sealed partial class MetadataProperty : System.Data.Metadata.Edm.MetadataItem
    {
        internal MetadataProperty() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public string Name { get { throw null; } }
        public System.Data.Metadata.Edm.PropertyKind PropertyKind { get { throw null; } }
        public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
        public object Value { get { throw null; } }
    }
    public sealed partial class MetadataWorkspace
    {
        public static readonly double MaximumEdmVersionSupported;
        public MetadataWorkspace() { }
        public MetadataWorkspace(System.Collections.Generic.IEnumerable<string> paths, System.Collections.Generic.IEnumerable<System.Reflection.Assembly> assembliesToConsider) { }
        public static void ClearCache() { }
        public System.Data.Common.EntitySql.EntitySqlParser CreateEntitySqlParser() { throw null; }
        public System.Data.Common.CommandTrees.DbQueryCommandTree CreateQueryCommandTree(System.Data.Common.CommandTrees.DbExpression query) { throw null; }
        public System.Data.Metadata.Edm.EnumType GetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType) { throw null; }
        public System.Data.Metadata.Edm.StructuralType GetEdmSpaceType(System.Data.Metadata.Edm.StructuralType objectSpaceType) { throw null; }
        public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace, bool ignoreCase) { throw null; }
        [System.CLSCompliantAttribute(false)]
        public System.Data.Metadata.Edm.ItemCollection GetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.GlobalItem> GetItems(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>(System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public T GetItem<T>(string identity, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public T GetItem<T>(string identity, System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public System.Data.Metadata.Edm.EnumType GetObjectSpaceType(System.Data.Metadata.Edm.EnumType edmSpaceType) { throw null; }
        public System.Data.Metadata.Edm.StructuralType GetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmMember> GetRelevantMembersForUpdate(System.Data.Metadata.Edm.EntitySetBase entitySet, System.Data.Metadata.Edm.EntityTypeBase entityType, bool partialUpdateSupported) { throw null; }
        [System.ObsoleteAttribute("Use MetadataWorkspace.GetRelevantMembersForUpdate(EntitySetBase, EntityTypeBase, bool) instead")]
        public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> GetRequiredOriginalValueMembers(System.Data.Metadata.Edm.EntitySetBase entitySet, System.Data.Metadata.Edm.EntityTypeBase entityType) { throw null; }
        public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
        public void LoadFromAssembly(System.Reflection.Assembly assembly) { }
        public void LoadFromAssembly(System.Reflection.Assembly assembly, System.Action<string> logLoadMessage) { }
        [System.CLSCompliantAttribute(false)]
        public void RegisterItemCollection(System.Data.Metadata.Edm.ItemCollection collection) { }
        public bool TryGetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType, out System.Data.Metadata.Edm.EnumType edmSpaceType) { throw null; }
        public bool TryGetEdmSpaceType(System.Data.Metadata.Edm.StructuralType objectSpaceType, out System.Data.Metadata.Edm.StructuralType edmSpaceType) { throw null; }
        public bool TryGetEntityContainer(string name, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EntityContainer entityContainer) { throw null; }
        public bool TryGetEntityContainer(string name, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EntityContainer entityContainer) { throw null; }
        [System.CLSCompliantAttribute(false)]
        public bool TryGetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.ItemCollection collection) { throw null; }
        public bool TryGetItem<T>(string identity, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out T item) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public bool TryGetItem<T>(string identity, System.Data.Metadata.Edm.DataSpace space, out T item) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
        public bool TryGetObjectSpaceType(System.Data.Metadata.Edm.EnumType edmSpaceType, out System.Data.Metadata.Edm.EnumType objectSpaceType) { throw null; }
        public bool TryGetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType, out System.Data.Metadata.Edm.StructuralType objectSpaceType) { throw null; }
        public bool TryGetType(string name, string namespaceName, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EdmType type) { throw null; }
        public bool TryGetType(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EdmType type) { throw null; }
    }
    public sealed partial class NavigationProperty : System.Data.Metadata.Edm.EdmMember
    {
        internal NavigationProperty() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipEndMember FromEndMember { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipType RelationshipType { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipEndMember ToEndMember { get { throw null; } }
        public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmProperty> GetDependentProperties() { throw null; }
    }
    [System.CLSCompliantAttribute(false)]
    public sealed partial class ObjectItemCollection : System.Data.Metadata.Edm.ItemCollection
    {
        public ObjectItemCollection() { }
        public System.Type GetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType) { throw null; }
        public System.Type GetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType) { throw null; }
        public override System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>() { throw null; }
        public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
        public void LoadFromAssembly(System.Reflection.Assembly assembly) { }
        public void LoadFromAssembly(System.Reflection.Assembly assembly, System.Data.Metadata.Edm.EdmItemCollection edmItemCollection) { }
        public void LoadFromAssembly(System.Reflection.Assembly assembly, System.Data.Metadata.Edm.EdmItemCollection edmItemCollection, System.Action<string> logLoadMessage) { }
        public bool TryGetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType, out System.Type clrType) { throw null; }
        public bool TryGetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType, out System.Type clrType) { throw null; }
    }
    public enum OperationAction
    {
        Cascade = 1,
        None = 0,
        Restrict = 2,
    }
    public enum ParameterMode
    {
        In = 0,
        InOut = 2,
        Out = 1,
        ReturnValue = 3,
    }
    public enum ParameterTypeSemantics
    {
        AllowImplicitConversion = 0,
        AllowImplicitPromotion = 1,
        ExactMatchOnly = 2,
    }
    public sealed partial class PrimitiveType : System.Data.Metadata.Edm.SimpleType
    {
        internal PrimitiveType() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Type ClrEquivalentType { get { throw null; } }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> FacetDescriptions { get { throw null; } }
        public System.Data.Metadata.Edm.PrimitiveTypeKind PrimitiveTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.EdmType GetEdmPrimitiveType() { throw null; }
        public static System.Data.Metadata.Edm.PrimitiveType GetEdmPrimitiveType(System.Data.Metadata.Edm.PrimitiveTypeKind primitiveTypeKind) { throw null; }
        public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetEdmPrimitiveTypes() { throw null; }
    }
    public enum PrimitiveTypeKind
    {
        Binary = 0,
        Boolean = 1,
        Byte = 2,
        DateTime = 3,
        DateTimeOffset = 14,
        Decimal = 4,
        Double = 5,
        Geography = 16,
        GeographyCollection = 30,
        GeographyLineString = 25,
        GeographyMultiLineString = 28,
        GeographyMultiPoint = 27,
        GeographyMultiPolygon = 29,
        GeographyPoint = 24,
        GeographyPolygon = 26,
        Geometry = 15,
        GeometryCollection = 23,
        GeometryLineString = 18,
        GeometryMultiLineString = 21,
        GeometryMultiPoint = 20,
        GeometryMultiPolygon = 22,
        GeometryPoint = 17,
        GeometryPolygon = 19,
        Guid = 6,
        Int16 = 9,
        Int32 = 10,
        Int64 = 11,
        SByte = 8,
        Single = 7,
        String = 12,
        Time = 13,
    }
    public enum PropertyKind
    {
        Extended = 1,
        System = 0,
    }
    public partial class ReadOnlyMetadataCollection<T> : System.Collections.ObjectModel.ReadOnlyCollection<T> where T : System.Data.Metadata.Edm.MetadataItem
    {
        internal ReadOnlyMetadataCollection() : base (default(System.Collections.Generic.IList<T>)) { }
        public bool IsReadOnly { get { throw null; } }
        public virtual T this[string identity] { get { throw null; } }
        public virtual bool Contains(string identity) { throw null; }
        public new System.Data.Metadata.Edm.ReadOnlyMetadataCollection<T>.Enumerator GetEnumerator() { throw null; }
        public virtual T GetValue(string identity, bool ignoreCase) { throw null; }
        public virtual new int IndexOf(T value) { throw null; }
        public virtual bool TryGetValue(string identity, bool ignoreCase, out T item) { throw null; }
        [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
        public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
        {
            private T _current;
            private object _dummy;
            private int _dummyPrimitive;
            public T Current { get { throw null; } }
            object System.Collections.IEnumerator.Current { get { throw null; } }
            public void Dispose() { }
            public bool MoveNext() { throw null; }
            public void Reset() { }
        }
    }
    public sealed partial class ReferentialConstraint : System.Data.Metadata.Edm.MetadataItem
    {
        internal ReferentialConstraint() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> FromProperties { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipEndMember FromRole { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> ToProperties { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipEndMember ToRole { get { throw null; } }
        public override string ToString() { throw null; }
    }
    public sealed partial class RefType : System.Data.Metadata.Edm.EdmType
    {
        internal RefType() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.EntityTypeBase ElementType { get { throw null; } }
    }
    public abstract partial class RelationshipEndMember : System.Data.Metadata.Edm.EdmMember
    {
        internal RelationshipEndMember() { }
        public System.Data.Metadata.Edm.OperationAction DeleteBehavior { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipMultiplicity RelationshipMultiplicity { get { throw null; } }
        public System.Data.Metadata.Edm.EntityType GetEntityType() { throw null; }
    }
    public enum RelationshipMultiplicity
    {
        Many = 2,
        One = 1,
        ZeroOrOne = 0,
    }
    public abstract partial class RelationshipSet : System.Data.Metadata.Edm.EntitySetBase
    {
        internal RelationshipSet() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public new System.Data.Metadata.Edm.RelationshipType ElementType { get { throw null; } }
    }
    public abstract partial class RelationshipType : System.Data.Metadata.Edm.EntityTypeBase
    {
        internal RelationshipType() { }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.RelationshipEndMember> RelationshipEndMembers { get { throw null; } }
    }
    public sealed partial class RowType : System.Data.Metadata.Edm.StructuralType
    {
        internal RowType() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
    }
    public abstract partial class SimpleType : System.Data.Metadata.Edm.EdmType
    {
        internal SimpleType() { }
    }
    public enum StoreGeneratedPattern
    {
        Computed = 2,
        Identity = 1,
        None = 0,
    }
    [System.CLSCompliantAttribute(false)]
    public sealed partial class StoreItemCollection : System.Data.Metadata.Edm.ItemCollection
    {
        public StoreItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
        public StoreItemCollection(params string[] filePaths) { }
        public double StoreSchemaVersion { get { throw null; } }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
    }
    public abstract partial class StructuralType : System.Data.Metadata.Edm.EdmType
    {
        internal StructuralType() { }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmMember> Members { get { throw null; } }
    }
    [System.Diagnostics.DebuggerDisplayAttribute("EdmType={EdmType}, Facets.Count={Facets.Count}")]
    public sealed partial class TypeUsage : System.Data.Metadata.Edm.MetadataItem
    {
        internal TypeUsage() { }
        public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
        public System.Data.Metadata.Edm.EdmType EdmType { get { throw null; } }
        public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.Facet> Facets { get { throw null; } }
        public static System.Data.Metadata.Edm.TypeUsage CreateBinaryTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isFixedLength) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateBinaryTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isFixedLength, int maxLength) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateDateTimeOffsetTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateDateTimeTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateDecimalTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateDecimalTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, byte precision, byte scale) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateDefaultTypeUsage(System.Data.Metadata.Edm.EdmType edmType) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateStringTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateStringTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength, int maxLength) { throw null; }
        public static System.Data.Metadata.Edm.TypeUsage CreateTimeTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision) { throw null; }
        public bool IsSubtypeOf(System.Data.Metadata.Edm.TypeUsage typeUsage) { throw null; }
        public override string ToString() { throw null; }
    }
}
namespace System.Data.Objects
{
    public sealed partial class CompiledQuery
    {
        internal CompiledQuery() { }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TArg15, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TArg15, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TArg15, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TResult> Compile<TArg0, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TResult> Compile<TArg0, TArg1, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TResult> Compile<TArg0, TArg1, TArg2, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
        public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
    }
    public abstract partial class CurrentValueRecord : System.Data.Objects.DbUpdatableDataRecord
    {
        internal CurrentValueRecord() { }
    }
    public abstract partial class DbUpdatableDataRecord : System.Data.Common.DbDataRecord, System.Data.IDataRecord, System.Data.IExtendedDataRecord
    {
        internal DbUpdatableDataRecord() { }
        public virtual System.Data.Common.DataRecordInfo DataRecordInfo { get { throw null; } }
        public override int FieldCount { get { throw null; } }
        public override object this[int ordinal] { get { throw null; } }
        public override object this[string name] { get { throw null; } }
        public override bool GetBoolean(int ordinal) { throw null; }
        public override byte GetByte(int ordinal) { throw null; }
        public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
        public override char GetChar(int ordinal) { throw null; }
        public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
        public System.Data.Common.DbDataReader GetDataReader(int i) { throw null; }
        public System.Data.Common.DbDataRecord GetDataRecord(int ordinal) { throw null; }
        public override string GetDataTypeName(int ordinal) { throw null; }
        public override System.DateTime GetDateTime(int ordinal) { throw null; }
        protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
        public override decimal GetDecimal(int ordinal) { throw null; }
        public override double GetDouble(int ordinal) { throw null; }
        public override System.Type GetFieldType(int ordinal) { throw null; }
        public override float GetFloat(int ordinal) { throw null; }
        public override System.Guid GetGuid(int ordinal) { throw null; }
        public override short GetInt16(int ordinal) { throw null; }
        public override int GetInt32(int ordinal) { throw null; }
        public override long GetInt64(int ordinal) { throw null; }
        public override string GetName(int ordinal) { throw null; }
        public override int GetOrdinal(string name) { throw null; }
        protected abstract object GetRecordValue(int ordinal);
        public override string GetString(int ordinal) { throw null; }
        public override object GetValue(int ordinal) { throw null; }
        public override int GetValues(object[] values) { throw null; }
        public override bool IsDBNull(int ordinal) { throw null; }
        public void SetBoolean(int ordinal, bool value) { }
        public void SetByte(int ordinal, byte value) { }
        public void SetChar(int ordinal, char value) { }
        public void SetDataRecord(int ordinal, System.Data.IDataRecord value) { }
        public void SetDateTime(int ordinal, System.DateTime value) { }
        public void SetDBNull(int ordinal) { }
        public void SetDecimal(int ordinal, decimal value) { }
        public void SetDouble(int ordinal, double value) { }
        public void SetFloat(int ordinal, float value) { }
        public void SetGuid(int ordinal, System.Guid value) { }
        public void SetInt16(int ordinal, short value) { }
        public void SetInt32(int ordinal, int value) { }
        public void SetInt64(int ordinal, long value) { }
        protected abstract void SetRecordValue(int ordinal, object value);
        public void SetString(int ordinal, string value) { }
        public void SetValue(int ordinal, object value) { }
        public int SetValues(params object[] values) { throw null; }
        System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
    }
    public static partial class EntityFunctions
    {
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddDays")]
        public static System.Nullable<System.DateTimeOffset> AddDays(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddDays")]
        public static System.Nullable<System.DateTime> AddDays(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
        public static System.Nullable<System.DateTimeOffset> AddHours(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
        public static System.Nullable<System.DateTime> AddHours(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
        public static System.Nullable<System.TimeSpan> AddHours(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
        public static System.Nullable<System.DateTimeOffset> AddMicroseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
        public static System.Nullable<System.DateTime> AddMicroseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
        public static System.Nullable<System.TimeSpan> AddMicroseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
        public static System.Nullable<System.DateTimeOffset> AddMilliseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
        public static System.Nullable<System.DateTime> AddMilliseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
        public static System.Nullable<System.TimeSpan> AddMilliseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
        public static System.Nullable<System.DateTimeOffset> AddMinutes(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
        public static System.Nullable<System.DateTime> AddMinutes(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
        public static System.Nullable<System.TimeSpan> AddMinutes(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMonths")]
        public static System.Nullable<System.DateTimeOffset> AddMonths(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMonths")]
        public static System.Nullable<System.DateTime> AddMonths(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
        public static System.Nullable<System.DateTimeOffset> AddNanoseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
        public static System.Nullable<System.DateTime> AddNanoseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
        public static System.Nullable<System.TimeSpan> AddNanoseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
        public static System.Nullable<System.DateTimeOffset> AddSeconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
        public static System.Nullable<System.DateTime> AddSeconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
        public static System.Nullable<System.TimeSpan> AddSeconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddYears")]
        public static System.Nullable<System.DateTimeOffset> AddYears(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddYears")]
        public static System.Nullable<System.DateTime> AddYears(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
        public static string AsNonUnicode(string value) { throw null; }
        public static string AsUnicode(string value) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "CreateDateTime")]
        public static System.Nullable<System.DateTime> CreateDateTime(System.Nullable<int> year, System.Nullable<int> month, System.Nullable<int> day, System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "CreateDateTimeOffset")]
        public static System.Nullable<System.DateTimeOffset> CreateDateTimeOffset(System.Nullable<int> year, System.Nullable<int> month, System.Nullable<int> day, System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second, System.Nullable<int> timeZoneOffset) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "CreateTime")]
        public static System.Nullable<System.TimeSpan> CreateTime(System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffDays")]
        public static System.Nullable<int> DiffDays(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffDays")]
        public static System.Nullable<int> DiffDays(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
        public static System.Nullable<int> DiffHours(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
        public static System.Nullable<int> DiffHours(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
        public static System.Nullable<int> DiffHours(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
        public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
        public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
        public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
        public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
        public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
        public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
        public static System.Nullable<int> DiffMinutes(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
        public static System.Nullable<int> DiffMinutes(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
        public static System.Nullable<int> DiffMinutes(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMonths")]
        public static System.Nullable<int> DiffMonths(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMonths")]
        public static System.Nullable<int> DiffMonths(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
        public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
        public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
        public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
        public static System.Nullable<int> DiffSeconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
        public static System.Nullable<int> DiffSeconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
        public static System.Nullable<int> DiffSeconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffYears")]
        public static System.Nullable<int> DiffYears(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffYears")]
        public static System.Nullable<int> DiffYears(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "GetTotalOffsetMinutes")]
        public static System.Nullable<int> GetTotalOffsetMinutes(System.Nullable<System.DateTimeOffset> dateTimeOffsetArgument) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Left")]
        public static string Left(string stringArgument, System.Nullable<long> length) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Reverse")]
        public static string Reverse(string stringArgument) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Right")]
        public static string Right(string stringArgument, System.Nullable<long> length) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
        public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
        public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Truncate")]
        public static System.Nullable<decimal> Truncate(System.Nullable<decimal> value, System.Nullable<int> digits) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Truncate")]
        public static System.Nullable<double> Truncate(System.Nullable<double> value, System.Nullable<int> digits) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "TruncateTime")]
        public static System.Nullable<System.DateTimeOffset> TruncateTime(System.Nullable<System.DateTimeOffset> dateValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "TruncateTime")]
        public static System.Nullable<System.DateTime> TruncateTime(System.Nullable<System.DateTime> dateValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
        public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
        public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
    }
    public partial interface IObjectSet<TEntity> : System.Collections.Generic.IEnumerable<TEntity>, System.Collections.IEnumerable, System.Linq.IQueryable, System.Linq.IQueryable<TEntity> where TEntity : class
    {
        void AddObject(TEntity entity);
        void Attach(TEntity entity);
        void DeleteObject(TEntity entity);
        void Detach(TEntity entity);
    }
    public enum MergeOption
    {
        AppendOnly = 0,
        NoTracking = 3,
        OverwriteChanges = 1,
        PreserveChanges = 2,
    }
    public partial class ObjectContext : System.IDisposable
    {
        public ObjectContext(System.Data.EntityClient.EntityConnection connection) { }
        protected ObjectContext(System.Data.EntityClient.EntityConnection connection, string defaultContainerName) { }
        public ObjectContext(string connectionString) { }
        protected ObjectContext(string connectionString, string defaultContainerName) { }
        public System.Nullable<int> CommandTimeout { get { throw null; } set { } }
        public System.Data.Common.DbConnection Connection { get { throw null; } }
        public System.Data.Objects.ObjectContextOptions ContextOptions { get { throw null; } }
        public string DefaultContainerName { get { throw null; } set { } }
        [System.CLSCompliantAttribute(false)]
        public System.Data.Metadata.Edm.MetadataWorkspace MetadataWorkspace { get { throw null; } }
        public System.Data.Objects.ObjectStateManager ObjectStateManager { get { throw null; } }
        protected internal System.Linq.IQueryProvider QueryProvider { get { throw null; } }
        public event System.Data.Objects.ObjectMaterializedEventHandler ObjectMaterialized { add { } remove { } }
        public event System.EventHandler SavingChanges { add { } remove { } }
        public void AcceptAllChanges() { }
        public void AddObject(string entitySetName, object entity) { }
        public TEntity ApplyCurrentValues<TEntity>(string entitySetName, TEntity currentEntity) where TEntity : class { throw null; }
        public TEntity ApplyOriginalValues<TEntity>(string entitySetName, TEntity originalEntity) where TEntity : class { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.ObsoleteAttribute("Use ApplyCurrentValues instead")]
        public void ApplyPropertyChanges(string entitySetName, object changed) { }
        public void Attach(System.Data.Objects.DataClasses.IEntityWithKey entity) { }
        public void AttachTo(string entitySetName, object entity) { }
        public void CreateDatabase() { }
        public string CreateDatabaseScript() { throw null; }
        public System.Data.EntityKey CreateEntityKey(string entitySetName, object entity) { throw null; }
        public System.Data.Objects.ObjectSet<TEntity> CreateObjectSet<TEntity>() where TEntity : class { throw null; }
        public System.Data.Objects.ObjectSet<TEntity> CreateObjectSet<TEntity>(string entitySetName) where TEntity : class { throw null; }
        public T CreateObject<T>() where T : class { throw null; }
        public void CreateProxyTypes(System.Collections.Generic.IEnumerable<System.Type> types) { }
        public System.Data.Objects.ObjectQuery<T> CreateQuery<T>(string queryString, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public bool DatabaseExists() { throw null; }
        public void DeleteDatabase() { }
        public void DeleteObject(object entity) { }
        public void Detach(object entity) { }
        public void DetectChanges() { }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public int ExecuteFunction(string functionName, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public System.Data.Objects.ObjectResult<TElement> ExecuteFunction<TElement>(string functionName, System.Data.Objects.MergeOption mergeOption, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public System.Data.Objects.ObjectResult<TElement> ExecuteFunction<TElement>(string functionName, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public int ExecuteStoreCommand(string commandText, params object[] parameters) { throw null; }
        public System.Data.Objects.ObjectResult<TElement> ExecuteStoreQuery<TElement>(string commandText, params object[] parameters) { throw null; }
        public System.Data.Objects.ObjectResult<TEntity> ExecuteStoreQuery<TEntity>(string commandText, string entitySetName, System.Data.Objects.MergeOption mergeOption, params object[] parameters) { throw null; }
        public static System.Collections.Generic.IEnumerable<System.Type> GetKnownProxyTypes() { throw null; }
        public object GetObjectByKey(System.Data.EntityKey key) { throw null; }
        public static System.Type GetObjectType(System.Type type) { throw null; }
        public void LoadProperty(object entity, string navigationProperty) { }
        public void LoadProperty(object entity, string navigationProperty, System.Data.Objects.MergeOption mergeOption) { }
        public void LoadProperty<TEntity>(TEntity entity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> selector) { }
        public void LoadProperty<TEntity>(TEntity entity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> selector, System.Data.Objects.MergeOption mergeOption) { }
        public void Refresh(System.Data.Objects.RefreshMode refreshMode, System.Collections.IEnumerable collection) { }
        public void Refresh(System.Data.Objects.RefreshMode refreshMode, object entity) { }
        public int SaveChanges() { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.ObsoleteAttribute("Use SaveChanges(SaveOptions options) instead.")]
        public int SaveChanges(bool acceptChangesDuringSave) { throw null; }
        public virtual int SaveChanges(System.Data.Objects.SaveOptions options) { throw null; }
        public System.Data.Objects.ObjectResult<TElement> Translate<TElement>(System.Data.Common.DbDataReader reader) { throw null; }
        public System.Data.Objects.ObjectResult<TEntity> Translate<TEntity>(System.Data.Common.DbDataReader reader, string entitySetName, System.Data.Objects.MergeOption mergeOption) { throw null; }
        public bool TryGetObjectByKey(System.Data.EntityKey key, out object value) { throw null; }
    }
    public sealed partial class ObjectContextOptions
    {
        internal ObjectContextOptions() { }
        public bool LazyLoadingEnabled { get { throw null; } set { } }
        public bool ProxyCreationEnabled { get { throw null; } set { } }
        public bool UseConsistentNullReferenceBehavior { get { throw null; } set { } }
        public bool UseCSharpNullComparisonBehavior { get { throw null; } set { } }
        public bool UseLegacyPreserveChangesBehavior { get { throw null; } set { } }
    }
    public partial class ObjectMaterializedEventArgs : System.EventArgs
    {
        internal ObjectMaterializedEventArgs() { }
        public object Entity { get { throw null; } }
    }
    public delegate void ObjectMaterializedEventHandler(object sender, System.Data.Objects.ObjectMaterializedEventArgs e);
    public sealed partial class ObjectParameter
    {
        public ObjectParameter(string name, object value) { }
        public ObjectParameter(string name, System.Type type) { }
        public string Name { get { throw null; } }
        public System.Type ParameterType { get { throw null; } }
        public object Value { get { throw null; } set { } }
    }
    public sealed partial class ObjectParameterCollection : System.Collections.Generic.ICollection<System.Data.Objects.ObjectParameter>, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectParameter>, System.Collections.IEnumerable
    {
        internal ObjectParameterCollection() { }
        public int Count { get { throw null; } }
        public System.Data.Objects.ObjectParameter this[string name] { get { throw null; } }
        bool System.Collections.Generic.ICollection<System.Data.Objects.ObjectParameter>.IsReadOnly { get { throw null; } }
        public void Add(System.Data.Objects.ObjectParameter parameter) { }
        public void Clear() { }
        public bool Contains(System.Data.Objects.ObjectParameter parameter) { throw null; }
        public bool Contains(string name) { throw null; }
        public void CopyTo(System.Data.Objects.ObjectParameter[] array, int index) { }
        public bool Remove(System.Data.Objects.ObjectParameter parameter) { throw null; }
        System.Collections.Generic.IEnumerator<System.Data.Objects.ObjectParameter> System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectParameter>.GetEnumerator() { throw null; }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
    }
    public abstract partial class ObjectQuery : System.Collections.IEnumerable, System.ComponentModel.IListSource, System.Linq.IOrderedQueryable, System.Linq.IQueryable
    {
        internal ObjectQuery() { }
        public string CommandText { get { throw null; } }
        public System.Data.Objects.ObjectContext Context { get { throw null; } }
        public bool EnablePlanCaching { get { throw null; } set { } }
        public System.Data.Objects.MergeOption MergeOption { get { throw null; } set { } }
        public System.Data.Objects.ObjectParameterCollection Parameters { get { throw null; } }
        bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
        System.Type System.Linq.IQueryable.ElementType { get { throw null; } }
        System.Linq.Expressions.Expression System.Linq.IQueryable.Expression { get { throw null; } }
        System.Linq.IQueryProvider System.Linq.IQueryable.Provider { get { throw null; } }
        public System.Data.Objects.ObjectResult Execute(System.Data.Objects.MergeOption mergeOption) { throw null; }
        public System.Data.Metadata.Edm.TypeUsage GetResultType() { throw null; }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        public string ToTraceString() { throw null; }
    }
    public partial class ObjectQuery<T> : System.Data.Objects.ObjectQuery, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable, System.ComponentModel.IListSource, System.Linq.IOrderedQueryable, System.Linq.IOrderedQueryable<T>, System.Linq.IQueryable, System.Linq.IQueryable<T>
    {
        public ObjectQuery(string commandText, System.Data.Objects.ObjectContext context) { }
        public ObjectQuery(string commandText, System.Data.Objects.ObjectContext context, System.Data.Objects.MergeOption mergeOption) { }
        public string Name { get { throw null; } set { } }
        public System.Data.Objects.ObjectQuery<T> Distinct() { throw null; }
        public System.Data.Objects.ObjectQuery<T> Except(System.Data.Objects.ObjectQuery<T> query) { throw null; }
        public new System.Data.Objects.ObjectResult<T> Execute(System.Data.Objects.MergeOption mergeOption) { throw null; }
        public System.Data.Objects.ObjectQuery<System.Data.Common.DbDataRecord> GroupBy(string keys, string projection, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public System.Data.Objects.ObjectQuery<T> Include(string path) { throw null; }
        public System.Data.Objects.ObjectQuery<T> Intersect(System.Data.Objects.ObjectQuery<T> query) { throw null; }
        public System.Data.Objects.ObjectQuery<TResultType> OfType<TResultType>() { throw null; }
        public System.Data.Objects.ObjectQuery<T> OrderBy(string keys, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public System.Data.Objects.ObjectQuery<System.Data.Common.DbDataRecord> Select(string projection, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public System.Data.Objects.ObjectQuery<TResultType> SelectValue<TResultType>(string projection, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public System.Data.Objects.ObjectQuery<T> Skip(string keys, string count, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
        public System.Data.Objects.ObjectQuery<T> Top(string count, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
        public System.Data.Objects.ObjectQuery<T> Union(System.Data.Objects.ObjectQuery<T> query) { throw null; }
        public System.Data.Objects.ObjectQuery<T> UnionAll(System.Data.Objects.ObjectQuery<T> query) { throw null; }
        public System.Data.Objects.ObjectQuery<T> Where(string predicate, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
    }
    public abstract partial class ObjectResult : System.Collections.IEnumerable, System.ComponentModel.IListSource, System.IDisposable
    {
        internal ObjectResult() { }
        public abstract System.Type ElementType { get; }
        bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
        public abstract void Dispose();
        public System.Data.Objects.ObjectResult<TElement> GetNextResult<TElement>() { throw null; }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
    }
    public sealed partial class ObjectResult<T> : System.Data.Objects.ObjectResult, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
    {
        internal ObjectResult() { }
        public override System.Type ElementType { get { throw null; } }
        public override void Dispose() { }
        public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
    }
    public partial class ObjectSet<TEntity> : System.Data.Objects.ObjectQuery<TEntity>, System.Collections.Generic.IEnumerable<TEntity>, System.Collections.IEnumerable, System.Data.Objects.IObjectSet<TEntity>, System.Linq.IQueryable, System.Linq.IQueryable<TEntity> where TEntity : class
    {
        internal ObjectSet() : base (default(string), default(System.Data.Objects.ObjectContext)) { }
        public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
        public void AddObject(TEntity entity) { }
        public TEntity ApplyCurrentValues(TEntity currentEntity) { throw null; }
        public TEntity ApplyOriginalValues(TEntity originalEntity) { throw null; }
        public void Attach(TEntity entity) { }
        public TEntity CreateObject() { throw null; }
        public T CreateObject<T>() where T : class, TEntity { throw null; }
        public void DeleteObject(TEntity entity) { }
        public void Detach(TEntity entity) { }
    }
    public abstract partial class ObjectStateEntry : System.Data.Objects.DataClasses.IEntityChangeTracker
    {
        internal ObjectStateEntry() { }
        [System.Diagnostics.DebuggerBrowsableAttribute(System.Diagnostics.DebuggerBrowsableState.Never)]
        public abstract System.Data.Objects.CurrentValueRecord CurrentValues { get; }
        public abstract object Entity { get; }
        public abstract System.Data.EntityKey EntityKey { get; }
        public System.Data.Metadata.Edm.EntitySetBase EntitySet { get { throw null; } }
        public abstract bool IsRelationship { get; }
        public System.Data.Objects.ObjectStateManager ObjectStateManager { get { throw null; } }
        [System.Diagnostics.DebuggerBrowsableAttribute(System.Diagnostics.DebuggerBrowsableState.Never)]
        public abstract System.Data.Common.DbDataRecord OriginalValues { get; }
        public abstract System.Data.Objects.DataClasses.RelationshipManager RelationshipManager { get; }
        public System.Data.EntityState State { get { throw null; } }
        System.Data.EntityState System.Data.Objects.DataClasses.IEntityChangeTracker.EntityState { get { throw null; } }
        public abstract void AcceptChanges();
        public abstract void ApplyCurrentValues(object currentEntity);
        public abstract void ApplyOriginalValues(object originalEntity);
        public abstract void ChangeState(System.Data.EntityState state);
        public abstract void Delete();
        public abstract System.Collections.Generic.IEnumerable<string> GetModifiedProperties();
        public abstract System.Data.Objects.OriginalValueRecord GetUpdatableOriginalValues();
        public abstract bool IsPropertyChanged(string propertyName);
        public abstract void RejectPropertyChanges(string propertyName);
        public abstract void SetModified();
        public abstract void SetModifiedProperty(string propertyName);
        void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName) { }
        void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName) { }
        void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanged(string entityMemberName) { }
        void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanging(string entityMemberName) { }
    }
    public partial class ObjectStateManager
    {
        [System.CLSCompliantAttribute(false)]
        public ObjectStateManager(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace) { }
        [System.CLSCompliantAttribute(false)]
        public System.Data.Metadata.Edm.MetadataWorkspace MetadataWorkspace { get { throw null; } }
        public event System.ComponentModel.CollectionChangeEventHandler ObjectStateManagerChanged { add { } remove { } }
        public System.Data.Objects.ObjectStateEntry ChangeObjectState(object entity, System.Data.EntityState entityState) { throw null; }
        public System.Data.Objects.ObjectStateEntry ChangeRelationshipState(object sourceEntity, object targetEntity, string navigationProperty, System.Data.EntityState relationshipState) { throw null; }
        public System.Data.Objects.ObjectStateEntry ChangeRelationshipState(object sourceEntity, object targetEntity, string relationshipName, string targetRoleName, System.Data.EntityState relationshipState) { throw null; }
        public System.Data.Objects.ObjectStateEntry ChangeRelationshipState<TEntity>(TEntity sourceEntity, object targetEntity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> navigationPropertySelector, System.Data.EntityState relationshipState) where TEntity : class { throw null; }
        public System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> GetObjectStateEntries(System.Data.EntityState state) { throw null; }
        public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(System.Data.EntityKey key) { throw null; }
        public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(object entity) { throw null; }
        public System.Data.Objects.DataClasses.RelationshipManager GetRelationshipManager(object entity) { throw null; }
        public bool TryGetObjectStateEntry(System.Data.EntityKey key, out System.Data.Objects.ObjectStateEntry entry) { throw null; }
        public bool TryGetObjectStateEntry(object entity, out System.Data.Objects.ObjectStateEntry entry) { throw null; }
        public bool TryGetRelationshipManager(object entity, out System.Data.Objects.DataClasses.RelationshipManager relationshipManager) { throw null; }
    }
    public abstract partial class OriginalValueRecord : System.Data.Objects.DbUpdatableDataRecord
    {
        internal OriginalValueRecord() { }
    }
    public partial class ProxyDataContractResolver : System.Runtime.Serialization.DataContractResolver
    {
        public ProxyDataContractResolver() { }
        public override System.Type ResolveName(string typeName, string typeNamespace, System.Type declaredType, System.Runtime.Serialization.DataContractResolver knownTypeResolver) { throw null; }
        public override bool TryResolveType(System.Type dataContractType, System.Type declaredType, System.Runtime.Serialization.DataContractResolver knownTypeResolver, out System.Xml.XmlDictionaryString typeName, out System.Xml.XmlDictionaryString typeNamespace) { throw null; }
    }
    public enum RefreshMode
    {
        ClientWins = 2,
        StoreWins = 1,
    }
    [System.FlagsAttribute]
    public enum SaveOptions
    {
        AcceptAllChangesAfterSave = 1,
        DetectChangesBeforeSave = 2,
        None = 0,
    }
}
namespace System.Data.Objects.DataClasses
{
    [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
    [System.SerializableAttribute]
    public abstract partial class ComplexObject : System.Data.Objects.DataClasses.StructuralObject
    {
        protected ComplexObject() { }
        protected sealed override void ReportPropertyChanged(string property) { }
        protected sealed override void ReportPropertyChanging(string property) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Property)]
    public sealed partial class EdmComplexPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
    {
        public EdmComplexPropertyAttribute() { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class)]
    public sealed partial class EdmComplexTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
    {
        public EdmComplexTypeAttribute() { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false)]
    public sealed partial class EdmEntityTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
    {
        public EdmEntityTypeAttribute() { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Enum)]
    public sealed partial class EdmEnumTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
    {
        public EdmEnumTypeAttribute() { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false, AllowMultiple=false)]
    public sealed partial class EdmFunctionAttribute : System.Attribute
    {
        public EdmFunctionAttribute(string namespaceName, string functionName) { }
        public string FunctionName { get { throw null; } }
        public string NamespaceName { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Property)]
    public abstract partial class EdmPropertyAttribute : System.Attribute
    {
        internal EdmPropertyAttribute() { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true)]
    public sealed partial class EdmRelationshipAttribute : System.Attribute
    {
        public EdmRelationshipAttribute(string relationshipNamespaceName, string relationshipName, string role1Name, System.Data.Metadata.Edm.RelationshipMultiplicity role1Multiplicity, System.Type role1Type, string role2Name, System.Data.Metadata.Edm.RelationshipMultiplicity role2Multiplicity, System.Type role2Type) { }
        public EdmRelationshipAttribute(string relationshipNamespaceName, string relationshipName, string role1Name, System.Data.Metadata.Edm.RelationshipMultiplicity role1Multiplicity, System.Type role1Type, string role2Name, System.Data.Metadata.Edm.RelationshipMultiplicity role2Multiplicity, System.Type role2Type, bool isForeignKey) { }
        public bool IsForeignKey { get { throw null; } }
        public string RelationshipName { get { throw null; } }
        public string RelationshipNamespaceName { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipMultiplicity Role1Multiplicity { get { throw null; } }
        public string Role1Name { get { throw null; } }
        public System.Type Role1Type { get { throw null; } }
        public System.Data.Metadata.Edm.RelationshipMultiplicity Role2Multiplicity { get { throw null; } }
        public string Role2Name { get { throw null; } }
        public System.Type Role2Type { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Property)]
    public sealed partial class EdmRelationshipNavigationPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
    {
        public EdmRelationshipNavigationPropertyAttribute(string relationshipNamespaceName, string relationshipName, string targetRoleName) { }
        public string RelationshipName { get { throw null; } }
        public string RelationshipNamespaceName { get { throw null; } }
        public string TargetRoleName { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Property)]
    public sealed partial class EdmScalarPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
    {
        public EdmScalarPropertyAttribute() { }
        public bool EntityKeyProperty { get { throw null; } set { } }
        public bool IsNullable { get { throw null; } set { } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class, AllowMultiple=true)]
    public sealed partial class EdmSchemaAttribute : System.Attribute
    {
        public EdmSchemaAttribute() { }
        public EdmSchemaAttribute(string assemblyGuid) { }
    }
    public abstract partial class EdmTypeAttribute : System.Attribute
    {
        internal EdmTypeAttribute() { }
        public string Name { get { throw null; } set { } }
        public string NamespaceName { get { throw null; } set { } }
    }
    [System.SerializableAttribute]
    public sealed partial class EntityCollection<TEntity> : System.Data.Objects.DataClasses.RelatedEnd, System.Collections.Generic.ICollection<TEntity>, System.Collections.Generic.IEnumerable<TEntity>, System.Collections.IEnumerable, System.ComponentModel.IListSource where TEntity : class
    {
        public EntityCollection() { }
        public int Count { get { throw null; } }
        public bool IsReadOnly { get { throw null; } }
        bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
        public void Add(TEntity entity) { }
        public void Attach(System.Collections.Generic.IEnumerable<TEntity> entities) { }
        public void Attach(TEntity entity) { }
        public void Clear() { }
        public bool Contains(TEntity entity) { throw null; }
        public void CopyTo(TEntity[] array, int arrayIndex) { }
        public System.Data.Objects.ObjectQuery<TEntity> CreateSourceQuery() { throw null; }
        public new System.Collections.Generic.IEnumerator<TEntity> GetEnumerator() { throw null; }
        public override void Load(System.Data.Objects.MergeOption mergeOption) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnDeserializedAttribute]
        public void OnCollectionDeserialized(System.Runtime.Serialization.StreamingContext context) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnSerializingAttribute]
        public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
        public bool Remove(TEntity entity) { throw null; }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
    }
    [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
    [System.SerializableAttribute]
    public abstract partial class EntityObject : System.Data.Objects.DataClasses.StructuralObject, System.Data.Objects.DataClasses.IEntityWithChangeTracker, System.Data.Objects.DataClasses.IEntityWithKey, System.Data.Objects.DataClasses.IEntityWithRelationships
    {
        protected EntityObject() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.Runtime.Serialization.DataMemberAttribute]
        public System.Data.EntityKey EntityKey { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.Xml.Serialization.XmlIgnoreAttribute]
        public System.Data.EntityState EntityState { get { throw null; } }
        System.Data.Objects.DataClasses.RelationshipManager System.Data.Objects.DataClasses.IEntityWithRelationships.RelationshipManager { get { throw null; } }
        protected sealed override void ReportPropertyChanged(string property) { }
        protected sealed override void ReportPropertyChanging(string property) { }
        void System.Data.Objects.DataClasses.IEntityWithChangeTracker.SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker) { }
    }
    [System.Runtime.Serialization.DataContractAttribute]
    [System.SerializableAttribute]
    public abstract partial class EntityReference : System.Data.Objects.DataClasses.RelatedEnd
    {
        internal EntityReference() { }
        [System.Runtime.Serialization.DataMemberAttribute]
        public System.Data.EntityKey EntityKey { get { throw null; } set { } }
    }
    [System.Runtime.Serialization.DataContractAttribute]
    [System.SerializableAttribute]
    public sealed partial class EntityReference<TEntity> : System.Data.Objects.DataClasses.EntityReference where TEntity : class
    {
        public EntityReference() { }
        [System.Xml.Serialization.SoapIgnoreAttribute]
        [System.Xml.Serialization.XmlIgnoreAttribute]
        public TEntity Value { get { throw null; } set { } }
        public void Attach(TEntity entity) { }
        public System.Data.Objects.ObjectQuery<TEntity> CreateSourceQuery() { throw null; }
        public override void Load(System.Data.Objects.MergeOption mergeOption) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnDeserializedAttribute]
        public void OnRefDeserialized(System.Runtime.Serialization.StreamingContext context) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnSerializingAttribute]
        public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
    }
    public partial interface IEntityChangeTracker
    {
        System.Data.EntityState EntityState { get; }
        void EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName);
        void EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName);
        void EntityMemberChanged(string entityMemberName);
        void EntityMemberChanging(string entityMemberName);
    }
    public partial interface IEntityWithChangeTracker
    {
        void SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker);
    }
    public partial interface IEntityWithKey
    {
        System.Data.EntityKey EntityKey { get; set; }
    }
    public partial interface IEntityWithRelationships
    {
        System.Data.Objects.DataClasses.RelationshipManager RelationshipManager { get; }
    }
    public partial interface IRelatedEnd
    {
        bool IsLoaded { get; }
        string RelationshipName { get; }
        System.Data.Metadata.Edm.RelationshipSet RelationshipSet { get; }
        string SourceRoleName { get; }
        string TargetRoleName { get; }
        void Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
        void Add(object entity);
        void Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
        void Attach(object entity);
        System.Collections.IEnumerable CreateSourceQuery();
        System.Collections.IEnumerator GetEnumerator();
        void Load();
        void Load(System.Data.Objects.MergeOption mergeOption);
        bool Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
        bool Remove(object entity);
    }
    [System.Runtime.Serialization.DataContractAttribute]
    [System.SerializableAttribute]
    public abstract partial class RelatedEnd : System.Data.Objects.DataClasses.IRelatedEnd
    {
        internal RelatedEnd() { }
        [System.Xml.Serialization.SoapIgnoreAttribute]
        [System.Xml.Serialization.XmlIgnoreAttribute]
        public bool IsLoaded { get { throw null; } }
        [System.Xml.Serialization.SoapIgnoreAttribute]
        [System.Xml.Serialization.XmlIgnoreAttribute]
        public string RelationshipName { get { throw null; } }
        [System.Xml.Serialization.SoapIgnoreAttribute]
        [System.Xml.Serialization.XmlIgnoreAttribute]
        public System.Data.Metadata.Edm.RelationshipSet RelationshipSet { get { throw null; } }
        [System.Xml.Serialization.SoapIgnoreAttribute]
        [System.Xml.Serialization.XmlIgnoreAttribute]
        public string SourceRoleName { get { throw null; } }
        [System.Xml.Serialization.SoapIgnoreAttribute]
        [System.Xml.Serialization.XmlIgnoreAttribute]
        public string TargetRoleName { get { throw null; } }
        public event System.ComponentModel.CollectionChangeEventHandler AssociationChanged { add { } remove { } }
        public System.Collections.IEnumerator GetEnumerator() { throw null; }
        public void Load() { }
        public abstract void Load(System.Data.Objects.MergeOption mergeOption);
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnDeserializedAttribute]
        public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
        void System.Data.Objects.DataClasses.IRelatedEnd.Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { }
        void System.Data.Objects.DataClasses.IRelatedEnd.Add(object entity) { }
        void System.Data.Objects.DataClasses.IRelatedEnd.Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { }
        void System.Data.Objects.DataClasses.IRelatedEnd.Attach(object entity) { }
        System.Collections.IEnumerable System.Data.Objects.DataClasses.IRelatedEnd.CreateSourceQuery() { throw null; }
        bool System.Data.Objects.DataClasses.IRelatedEnd.Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { throw null; }
        bool System.Data.Objects.DataClasses.IRelatedEnd.Remove(object entity) { throw null; }
    }
    public enum RelationshipKind
    {
        Association = 0,
    }
    [System.SerializableAttribute]
    public partial class RelationshipManager
    {
        internal RelationshipManager() { }
        public static System.Data.Objects.DataClasses.RelationshipManager Create(System.Data.Objects.DataClasses.IEntityWithRelationships owner) { throw null; }
        public System.Collections.Generic.IEnumerable<System.Data.Objects.DataClasses.IRelatedEnd> GetAllRelatedEnds() { throw null; }
        public System.Data.Objects.DataClasses.EntityCollection<TTargetEntity> GetRelatedCollection<TTargetEntity>(string relationshipName, string targetRoleName) where TTargetEntity : class { throw null; }
        public System.Data.Objects.DataClasses.IRelatedEnd GetRelatedEnd(string relationshipName, string targetRoleName) { throw null; }
        public System.Data.Objects.DataClasses.EntityReference<TTargetEntity> GetRelatedReference<TTargetEntity>(string relationshipName, string targetRoleName) where TTargetEntity : class { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        public void InitializeRelatedCollection<TTargetEntity>(string relationshipName, string targetRoleName, System.Data.Objects.DataClasses.EntityCollection<TTargetEntity> entityCollection) where TTargetEntity : class { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        public void InitializeRelatedReference<TTargetEntity>(string relationshipName, string targetRoleName, System.Data.Objects.DataClasses.EntityReference<TTargetEntity> entityReference) where TTargetEntity : class { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnDeserializedAttribute]
        public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Runtime.Serialization.OnSerializingAttribute]
        public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
    }
    [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
    [System.SerializableAttribute]
    public abstract partial class StructuralObject : System.ComponentModel.INotifyPropertyChanged, System.ComponentModel.INotifyPropertyChanging
    {
        public static readonly string EntityKeyPropertyName;
        protected StructuralObject() { }
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
        public event System.ComponentModel.PropertyChangingEventHandler PropertyChanging { add { } remove { } }
        protected internal static bool BinaryEquals(byte[] first, byte[] second) { throw null; }
        protected static System.DateTime DefaultDateTimeValue() { throw null; }
        protected internal static byte[] GetValidValue(byte[] currentValue) { throw null; }
        protected internal T GetValidValue<T>(T currentValue, string property, bool isNullable, bool isInitialized) where T : System.Data.Objects.DataClasses.ComplexObject, new() { throw null; }
        protected virtual void OnPropertyChanged(string property) { }
        protected virtual void OnPropertyChanging(string property) { }
        protected virtual void ReportPropertyChanged(string property) { }
        protected virtual void ReportPropertyChanging(string property) { }
        protected internal static bool SetValidValue(bool value) { throw null; }
        protected internal static bool SetValidValue(bool value, string propertyName) { throw null; }
        protected internal static byte SetValidValue(byte value) { throw null; }
        protected internal static byte SetValidValue(byte value, string propertyName) { throw null; }
        protected internal static byte[] SetValidValue(byte[] value, bool isNullable) { throw null; }
        protected internal static byte[] SetValidValue(byte[] value, bool isNullable, string propertyName) { throw null; }
        protected internal static System.Data.Spatial.DbGeography SetValidValue(System.Data.Spatial.DbGeography value, bool isNullable) { throw null; }
        protected internal static System.Data.Spatial.DbGeography SetValidValue(System.Data.Spatial.DbGeography value, bool isNullable, string propertyName) { throw null; }
        protected internal static System.Data.Spatial.DbGeometry SetValidValue(System.Data.Spatial.DbGeometry value, bool isNullable) { throw null; }
        protected internal static System.Data.Spatial.DbGeometry SetValidValue(System.Data.Spatial.DbGeometry value, bool isNullable, string propertyName) { throw null; }
        protected internal static System.DateTime SetValidValue(System.DateTime value) { throw null; }
        protected internal static System.DateTime SetValidValue(System.DateTime value, string propertyName) { throw null; }
        protected internal static System.DateTimeOffset SetValidValue(System.DateTimeOffset value) { throw null; }
        protected internal static System.DateTimeOffset SetValidValue(System.DateTimeOffset value, string propertyName) { throw null; }
        protected internal static decimal SetValidValue(decimal value) { throw null; }
        protected internal static decimal SetValidValue(decimal value, string propertyName) { throw null; }
        protected internal static double SetValidValue(double value) { throw null; }
        protected internal static double SetValidValue(double value, string propertyName) { throw null; }
        protected internal static System.Guid SetValidValue(System.Guid value) { throw null; }
        protected internal static System.Guid SetValidValue(System.Guid value, string propertyName) { throw null; }
        protected internal static short SetValidValue(short value) { throw null; }
        protected internal static short SetValidValue(short value, string propertyName) { throw null; }
        protected internal static int SetValidValue(int value) { throw null; }
        protected internal static int SetValidValue(int value, string propertyName) { throw null; }
        protected internal static long SetValidValue(long value) { throw null; }
        protected internal static long SetValidValue(long value, string propertyName) { throw null; }
        protected internal static System.Nullable<bool> SetValidValue(System.Nullable<bool> value) { throw null; }
        protected internal static System.Nullable<bool> SetValidValue(System.Nullable<bool> value, string propertyName) { throw null; }
        protected internal static System.Nullable<byte> SetValidValue(System.Nullable<byte> value) { throw null; }
        protected internal static System.Nullable<byte> SetValidValue(System.Nullable<byte> value, string propertyName) { throw null; }
        protected internal static System.Nullable<System.DateTimeOffset> SetValidValue(System.Nullable<System.DateTimeOffset> value) { throw null; }
        protected internal static System.Nullable<System.DateTimeOffset> SetValidValue(System.Nullable<System.DateTimeOffset> value, string propertyName) { throw null; }
        protected internal static System.Nullable<System.DateTime> SetValidValue(System.Nullable<System.DateTime> value) { throw null; }
        protected internal static System.Nullable<System.DateTime> SetValidValue(System.Nullable<System.DateTime> value, string propertyName) { throw null; }
        protected internal static System.Nullable<decimal> SetValidValue(System.Nullable<decimal> value) { throw null; }
        protected internal static System.Nullable<decimal> SetValidValue(System.Nullable<decimal> value, string propertyName) { throw null; }
        protected internal static System.Nullable<double> SetValidValue(System.Nullable<double> value) { throw null; }
        protected internal static System.Nullable<double> SetValidValue(System.Nullable<double> value, string propertyName) { throw null; }
        protected internal static System.Nullable<System.Guid> SetValidValue(System.Nullable<System.Guid> value) { throw null; }
        protected internal static System.Nullable<System.Guid> SetValidValue(System.Nullable<System.Guid> value, string propertyName) { throw null; }
        protected internal static System.Nullable<short> SetValidValue(System.Nullable<short> value) { throw null; }
        protected internal static System.Nullable<short> SetValidValue(System.Nullable<short> value, string propertyName) { throw null; }
        protected internal static System.Nullable<int> SetValidValue(System.Nullable<int> value) { throw null; }
        protected internal static System.Nullable<int> SetValidValue(System.Nullable<int> value, string propertyName) { throw null; }
        protected internal static System.Nullable<long> SetValidValue(System.Nullable<long> value) { throw null; }
        protected internal static System.Nullable<long> SetValidValue(System.Nullable<long> value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<sbyte> SetValidValue(System.Nullable<sbyte> value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<sbyte> SetValidValue(System.Nullable<sbyte> value, string propertyName) { throw null; }
        protected internal static System.Nullable<float> SetValidValue(System.Nullable<float> value) { throw null; }
        protected internal static System.Nullable<float> SetValidValue(System.Nullable<float> value, string propertyName) { throw null; }
        protected internal static System.Nullable<System.TimeSpan> SetValidValue(System.Nullable<System.TimeSpan> value) { throw null; }
        protected internal static System.Nullable<System.TimeSpan> SetValidValue(System.Nullable<System.TimeSpan> value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<ushort> SetValidValue(System.Nullable<ushort> value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<ushort> SetValidValue(System.Nullable<ushort> value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<uint> SetValidValue(System.Nullable<uint> value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<uint> SetValidValue(System.Nullable<uint> value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<ulong> SetValidValue(System.Nullable<ulong> value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static System.Nullable<ulong> SetValidValue(System.Nullable<ulong> value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static sbyte SetValidValue(sbyte value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static sbyte SetValidValue(sbyte value, string propertyName) { throw null; }
        protected internal static float SetValidValue(float value) { throw null; }
        protected internal static float SetValidValue(float value, string propertyName) { throw null; }
        protected internal static string SetValidValue(string value, bool isNullable) { throw null; }
        protected internal static string SetValidValue(string value, bool isNullable, string propertyName) { throw null; }
        protected internal static System.TimeSpan SetValidValue(System.TimeSpan value) { throw null; }
        protected internal static System.TimeSpan SetValidValue(System.TimeSpan value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static ushort SetValidValue(ushort value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static ushort SetValidValue(ushort value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static uint SetValidValue(uint value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static uint SetValidValue(uint value, string propertyName) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static ulong SetValidValue(ulong value) { throw null; }
        [System.CLSCompliantAttribute(false)]
        protected internal static ulong SetValidValue(ulong value, string propertyName) { throw null; }
        protected internal T SetValidValue<T>(T oldValue, T newValue, string property) where T : System.Data.Objects.DataClasses.ComplexObject { throw null; }
        protected internal static TComplex VerifyComplexObjectIsNotNull<TComplex>(TComplex complexObject, string propertyName) where TComplex : System.Data.Objects.DataClasses.ComplexObject { throw null; }
    }
}
namespace System.Data.Objects.SqlClient
{
    public static partial class SqlFunctions
    {
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ACOS")]
        public static System.Nullable<double> Acos(System.Nullable<decimal> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ACOS")]
        public static System.Nullable<double> Acos(System.Nullable<double> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASCII")]
        public static System.Nullable<int> Ascii(string arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASIN")]
        public static System.Nullable<double> Asin(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASIN")]
        public static System.Nullable<double> Asin(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATAN")]
        public static System.Nullable<double> Atan(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATAN")]
        public static System.Nullable<double> Atan(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATN2")]
        public static System.Nullable<double> Atan2(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATN2")]
        public static System.Nullable<double> Atan2(System.Nullable<double> arg1, System.Nullable<double> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHAR")]
        public static string Char(System.Nullable<int> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
        public static System.Nullable<int> CharIndex(byte[] toSearch, byte[] target) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
        public static System.Nullable<int> CharIndex(byte[] toSearch, byte[] target, System.Nullable<int> startLocation) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
        public static System.Nullable<long> CharIndex(byte[] toSearch, byte[] target, System.Nullable<long> startLocation) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
        public static System.Nullable<int> CharIndex(string toSearch, string target) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
        public static System.Nullable<int> CharIndex(string toSearch, string target, System.Nullable<int> startLocation) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
        public static System.Nullable<long> CharIndex(string toSearch, string target, System.Nullable<long> startLocation) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(byte[] arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(byte[] arg1, byte[] arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(byte[] arg1, byte[] arg2, byte[] arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<bool> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2, System.Nullable<bool> arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2, System.Nullable<System.DateTimeOffset> arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2, System.Nullable<System.DateTime> arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2, System.Nullable<decimal> arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<double> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2, System.Nullable<double> arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2, System.Nullable<System.Guid> arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2, System.Nullable<System.TimeSpan> arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(string arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(string arg1, string arg2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
        public static System.Nullable<int> Checksum(string arg1, string arg2, string arg3) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM_AGG")]
        public static System.Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<int> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM_AGG")]
        public static System.Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<System.Nullable<int>> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COS")]
        public static System.Nullable<double> Cos(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COS")]
        public static System.Nullable<double> Cos(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COT")]
        public static System.Nullable<double> Cot(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COT")]
        public static System.Nullable<double> Cot(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CURRENT_TIMESTAMP")]
        public static System.Nullable<System.DateTime> CurrentTimestamp() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CURRENT_USER")]
        public static string CurrentUser() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(byte[] arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(System.Nullable<bool> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(System.Nullable<System.DateTimeOffset> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(System.Nullable<System.DateTime> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(System.Nullable<System.Guid> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(System.Nullable<System.TimeSpan> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
        public static System.Nullable<int> DataLength(string arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
        public static System.Nullable<System.DateTimeOffset> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTimeOffset> dateTimeOffsetArg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
        public static System.Nullable<System.DateTime> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTime> date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
        public static System.Nullable<System.TimeSpan> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.TimeSpan> time) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
        public static System.Nullable<System.DateTime> DateAdd(string datePartArg, System.Nullable<double> number, string date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, string endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, string endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, string endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTime> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
        public static System.Nullable<int> DateDiff(string datePartArg, string startDate, string endDate) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
        public static string DateName(string datePartArg, System.Nullable<System.DateTimeOffset> date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
        public static string DateName(string datePartArg, System.Nullable<System.DateTime> date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
        public static string DateName(string datePartArg, System.Nullable<System.TimeSpan> date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
        public static string DateName(string datePartArg, string date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
        public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.DateTimeOffset> date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
        public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.DateTime> date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
        public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.TimeSpan> date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
        public static System.Nullable<int> DatePart(string datePartArg, string date) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
        public static System.Nullable<decimal> Degrees(System.Nullable<decimal> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
        public static System.Nullable<double> Degrees(System.Nullable<double> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
        public static System.Nullable<int> Degrees(System.Nullable<int> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
        public static System.Nullable<long> Degrees(System.Nullable<long> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DIFFERENCE")]
        public static System.Nullable<int> Difference(string string1, string string2) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "EXP")]
        public static System.Nullable<double> Exp(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "EXP")]
        public static System.Nullable<double> Exp(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "GETDATE")]
        public static System.Nullable<System.DateTime> GetDate() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "GETUTCDATE")]
        public static System.Nullable<System.DateTime> GetUtcDate() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "HOST_NAME")]
        public static string HostName() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ISDATE")]
        public static System.Nullable<int> IsDate(string arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ISNUMERIC")]
        public static System.Nullable<int> IsNumeric(string arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG")]
        public static System.Nullable<double> Log(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG")]
        public static System.Nullable<double> Log(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG10")]
        public static System.Nullable<double> Log10(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG10")]
        public static System.Nullable<double> Log10(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "NCHAR")]
        public static string NChar(System.Nullable<int> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "PATINDEX")]
        public static System.Nullable<int> PatIndex(string stringPattern, string target) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "PI")]
        public static System.Nullable<double> Pi() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "QUOTENAME")]
        public static string QuoteName(string stringArg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "QUOTENAME")]
        public static string QuoteName(string stringArg, string quoteCharacter) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
        public static System.Nullable<decimal> Radians(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
        public static System.Nullable<double> Radians(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
        public static System.Nullable<int> Radians(System.Nullable<int> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
        public static System.Nullable<long> Radians(System.Nullable<long> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RAND")]
        public static System.Nullable<double> Rand() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RAND")]
        public static System.Nullable<double> Rand(System.Nullable<int> seed) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REPLICATE")]
        public static string Replicate(string target, System.Nullable<int> count) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
        public static System.Nullable<decimal> Sign(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
        public static System.Nullable<double> Sign(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
        public static System.Nullable<int> Sign(System.Nullable<int> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
        public static System.Nullable<long> Sign(System.Nullable<long> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIN")]
        public static System.Nullable<double> Sin(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIN")]
        public static System.Nullable<double> Sin(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SOUNDEX")]
        public static string SoundCode(string arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SPACE")]
        public static string Space(System.Nullable<int> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQUARE")]
        public static System.Nullable<double> Square(System.Nullable<decimal> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQUARE")]
        public static System.Nullable<double> Square(System.Nullable<double> arg1) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQRT")]
        public static System.Nullable<double> SquareRoot(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQRT")]
        public static System.Nullable<double> SquareRoot(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
        public static string StringConvert(System.Nullable<decimal> number) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
        public static string StringConvert(System.Nullable<decimal> number, System.Nullable<int> length) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
        public static string StringConvert(System.Nullable<decimal> number, System.Nullable<int> length, System.Nullable<int> decimalArg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
        public static string StringConvert(System.Nullable<double> number) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
        public static string StringConvert(System.Nullable<double> number, System.Nullable<int> length) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
        public static string StringConvert(System.Nullable<double> number, System.Nullable<int> length, System.Nullable<int> decimalArg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STUFF")]
        public static string Stuff(string stringInput, System.Nullable<int> start, System.Nullable<int> length, string stringReplacement) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "TAN")]
        public static System.Nullable<double> Tan(System.Nullable<decimal> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "TAN")]
        public static System.Nullable<double> Tan(System.Nullable<double> arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "UNICODE")]
        public static System.Nullable<int> Unicode(string arg) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "USER_NAME")]
        public static string UserName() { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "USER_NAME")]
        public static string UserName(System.Nullable<int> arg) { throw null; }
    }
    public static partial class SqlSpatialFunctions
    {
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASTEXTZM")]
        public static string AsTextZM(System.Data.Spatial.DbGeography geographyValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASTEXTZM")]
        public static string AsTextZM(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "BUFFERWITHTOLERANCE")]
        public static System.Data.Spatial.DbGeography BufferWithTolerance(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> distance, System.Nullable<double> tolerance, System.Nullable<bool> relative) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "BUFFERWITHTOLERANCE")]
        public static System.Data.Spatial.DbGeometry BufferWithTolerance(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> distance, System.Nullable<double> tolerance, System.Nullable<bool> relative) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ENVELOPEANGLE")]
        public static System.Nullable<double> EnvelopeAngle(System.Data.Spatial.DbGeography geographyValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ENVELOPECENTER")]
        public static System.Data.Spatial.DbGeography EnvelopeCenter(System.Data.Spatial.DbGeography geographyValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "FILTER")]
        public static System.Nullable<bool> Filter(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography geographyOther) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "FILTER")]
        public static System.Nullable<bool> Filter(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry geometryOther) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "INSTANCEOF")]
        public static System.Nullable<bool> InstanceOf(System.Data.Spatial.DbGeography geographyValue, string geometryTypeName) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "INSTANCEOF")]
        public static System.Nullable<bool> InstanceOf(System.Data.Spatial.DbGeometry geometryValue, string geometryTypeName) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "MAKEVALID")]
        public static System.Data.Spatial.DbGeometry MakeValid(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "NUMRINGS")]
        public static System.Nullable<int> NumRings(System.Data.Spatial.DbGeography geographyValue) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "POINTGEOGRAPHY")]
        public static System.Data.Spatial.DbGeography PointGeography(System.Nullable<double> latitude, System.Nullable<double> longitude, System.Nullable<int> spatialReferenceId) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "POINTGEOMETRY")]
        public static System.Data.Spatial.DbGeometry PointGeometry(System.Nullable<double> xCoordinate, System.Nullable<double> yCoordinate, System.Nullable<int> spatialReferenceId) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REDUCE")]
        public static System.Data.Spatial.DbGeography Reduce(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> tolerance) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REDUCE")]
        public static System.Data.Spatial.DbGeometry Reduce(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> tolerance) { throw null; }
        [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RINGN")]
        public static System.Data.Spatial.DbGeography RingN(System.Data.Spatial.DbGeography geographyValue, System.Nullable<int> index) { throw null; }
    }
}
namespace System.Data.Spatial
{
    [System.ComponentModel.DataAnnotations.BindableTypeAttribute]
    [System.Runtime.Serialization.DataContractAttribute]
    [System.SerializableAttribute]
    public partial class DbGeography
    {
        internal DbGeography() { }
        public System.Nullable<double> Area { get { throw null; } }
        public int CoordinateSystemId { get { throw null; } }
        public static int DefaultCoordinateSystemId { get { throw null; } }
        public int Dimension { get { throw null; } }
        public System.Nullable<int> ElementCount { get { throw null; } }
        public System.Nullable<double> Elevation { get { throw null; } }
        public System.Data.Spatial.DbGeography EndPoint { get { throw null; } }
        public System.Nullable<bool> IsClosed { get { throw null; } }
        public bool IsEmpty { get { throw null; } }
        public System.Nullable<double> Latitude { get { throw null; } }
        public System.Nullable<double> Length { get { throw null; } }
        public System.Nullable<double> Longitude { get { throw null; } }
        public System.Nullable<double> Measure { get { throw null; } }
        public System.Nullable<int> PointCount { get { throw null; } }
        public object ProviderValue { get { throw null; } }
        public string SpatialTypeName { get { throw null; } }
        public System.Data.Spatial.DbGeography StartPoint { get { throw null; } }
        [System.Runtime.Serialization.DataMemberAttribute(Name="Geography")]
        public System.Data.Spatial.DbGeographyWellKnownValue WellKnownValue { get { throw null; } set { } }
        public byte[] AsBinary() { throw null; }
        public string AsGml() { throw null; }
        public string AsText() { throw null; }
        public System.Data.Spatial.DbGeography Buffer(System.Nullable<double> distance) { throw null; }
        public System.Data.Spatial.DbGeography Difference(System.Data.Spatial.DbGeography other) { throw null; }
        public bool Disjoint(System.Data.Spatial.DbGeography other) { throw null; }
        public System.Nullable<double> Distance(System.Data.Spatial.DbGeography other) { throw null; }
        public System.Data.Spatial.DbGeography ElementAt(int index) { throw null; }
        public static System.Data.Spatial.DbGeography FromBinary(byte[] wellKnownBinary) { throw null; }
        public static System.Data.Spatial.DbGeography FromBinary(byte[] wellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography FromGml(string geographyMarkup) { throw null; }
        public static System.Data.Spatial.DbGeography FromGml(string geographyMarkup, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography FromText(string wellKnownText) { throw null; }
        public static System.Data.Spatial.DbGeography FromText(string wellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId) { throw null; }
        public System.Data.Spatial.DbGeography Intersection(System.Data.Spatial.DbGeography other) { throw null; }
        public bool Intersects(System.Data.Spatial.DbGeography other) { throw null; }
        public static System.Data.Spatial.DbGeography LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography LineFromText(string lineWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId) { throw null; }
        public System.Data.Spatial.DbGeography PointAt(int index) { throw null; }
        public static System.Data.Spatial.DbGeography PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography PointFromText(string pointWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeography PolygonFromText(string polygonWellKnownText, int coordinateSystemId) { throw null; }
        public bool SpatialEquals(System.Data.Spatial.DbGeography other) { throw null; }
        public System.Data.Spatial.DbGeography SymmetricDifference(System.Data.Spatial.DbGeography other) { throw null; }
        public override string ToString() { throw null; }
        public System.Data.Spatial.DbGeography Union(System.Data.Spatial.DbGeography other) { throw null; }
    }
    [System.Runtime.Serialization.DataContractAttribute]
    public sealed partial class DbGeographyWellKnownValue
    {
        public DbGeographyWellKnownValue() { }
        [System.Runtime.Serialization.DataMemberAttribute(Order=1, IsRequired=false, EmitDefaultValue=false)]
        public int CoordinateSystemId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.Runtime.Serialization.DataMemberAttribute(Order=3, IsRequired=false, EmitDefaultValue=false)]
        public byte[] WellKnownBinary { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.Runtime.Serialization.DataMemberAttribute(Order=2, IsRequired=false, EmitDefaultValue=false)]
        public string WellKnownText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
    }
    [System.ComponentModel.DataAnnotations.BindableTypeAttribute]
    [System.Runtime.Serialization.DataContractAttribute]
    [System.SerializableAttribute]
    public partial class DbGeometry
    {
        internal DbGeometry() { }
        public System.Nullable<double> Area { get { throw null; } }
        public System.Data.Spatial.DbGeometry Boundary { get { throw null; } }
        public System.Data.Spatial.DbGeometry Centroid { get { throw null; } }
        public System.Data.Spatial.DbGeometry ConvexHull { get { throw null; } }
        public int CoordinateSystemId { get { throw null; } }
        public static int DefaultCoordinateSystemId { get { throw null; } }
        public int Dimension { get { throw null; } }
        public System.Nullable<int> ElementCount { get { throw null; } }
        public System.Nullable<double> Elevation { get { throw null; } }
        public System.Data.Spatial.DbGeometry EndPoint { get { throw null; } }
        public System.Data.Spatial.DbGeometry Envelope { get { throw null; } }
        public System.Data.Spatial.DbGeometry ExteriorRing { get { throw null; } }
        public System.Nullable<int> InteriorRingCount { get { throw null; } }
        public System.Nullable<bool> IsClosed { get { throw null; } }
        public bool IsEmpty { get { throw null; } }
        public System.Nullable<bool> IsRing { get { throw null; } }
        public bool IsSimple { get { throw null; } }
        public bool IsValid { get { throw null; } }
        public System.Nullable<double> Length { get { throw null; } }
        public System.Nullable<double> Measure { get { throw null; } }
        public System.Nullable<int> PointCount { get { throw null; } }
        public System.Data.Spatial.DbGeometry PointOnSurface { get { throw null; } }
        public object ProviderValue { get { throw null; } }
        public string SpatialTypeName { get { throw null; } }
        public System.Data.Spatial.DbGeometry StartPoint { get { throw null; } }
        [System.Runtime.Serialization.DataMemberAttribute(Name="Geometry")]
        public System.Data.Spatial.DbGeometryWellKnownValue WellKnownValue { get { throw null; } set { } }
        public System.Nullable<double> XCoordinate { get { throw null; } }
        public System.Nullable<double> YCoordinate { get { throw null; } }
        public byte[] AsBinary() { throw null; }
        public string AsGml() { throw null; }
        public string AsText() { throw null; }
        public System.Data.Spatial.DbGeometry Buffer(System.Nullable<double> distance) { throw null; }
        public bool Contains(System.Data.Spatial.DbGeometry other) { throw null; }
        public bool Crosses(System.Data.Spatial.DbGeometry other) { throw null; }
        public System.Data.Spatial.DbGeometry Difference(System.Data.Spatial.DbGeometry other) { throw null; }
        public bool Disjoint(System.Data.Spatial.DbGeometry other) { throw null; }
        public System.Nullable<double> Distance(System.Data.Spatial.DbGeometry other) { throw null; }
        public System.Data.Spatial.DbGeometry ElementAt(int index) { throw null; }
        public static System.Data.Spatial.DbGeometry FromBinary(byte[] wellKnownBinary) { throw null; }
        public static System.Data.Spatial.DbGeometry FromBinary(byte[] wellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry FromGml(string geometryMarkup) { throw null; }
        public static System.Data.Spatial.DbGeometry FromGml(string geometryMarkup, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry FromText(string wellKnownText) { throw null; }
        public static System.Data.Spatial.DbGeometry FromText(string wellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId) { throw null; }
        public System.Data.Spatial.DbGeometry InteriorRingAt(int index) { throw null; }
        public System.Data.Spatial.DbGeometry Intersection(System.Data.Spatial.DbGeometry other) { throw null; }
        public bool Intersects(System.Data.Spatial.DbGeometry other) { throw null; }
        public static System.Data.Spatial.DbGeometry LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry LineFromText(string lineWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId) { throw null; }
        public bool Overlaps(System.Data.Spatial.DbGeometry other) { throw null; }
        public System.Data.Spatial.DbGeometry PointAt(int index) { throw null; }
        public static System.Data.Spatial.DbGeometry PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry PointFromText(string pointWellKnownText, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId) { throw null; }
        public static System.Data.Spatial.DbGeometry PolygonFromText(string polygonWellKnownText, int coordinateSystemId) { throw null; }
        public bool Relate(System.Data.Spatial.DbGeometry other, string matrix) { throw null; }
        public bool SpatialEquals(System.Data.Spatial.DbGeometry other) { throw null; }
        public System.Data.Spatial.DbGeometry SymmetricDifference(System.Data.Spatial.DbGeometry other) { throw null; }
        public override string ToString() { throw null; }
        public bool Touches(System.Data.Spatial.DbGeometry other) { throw null; }
        public System.Data.Spatial.DbGeometry Union(System.Data.Spatial.DbGeometry other) { throw null; }
        public bool Within(System.Data.Spatial.DbGeometry other) { throw null; }
    }
    [System.Runtime.Serialization.DataContractAttribute]
    public sealed partial class DbGeometryWellKnownValue
    {
        public DbGeometryWellKnownValue() { }
        [System.Runtime.Serialization.DataMemberAttribute(Order=1, IsRequired=false, EmitDefaultValue=false)]
        public int CoordinateSystemId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.Runtime.Serialization.DataMemberAttribute(Order=3, IsRequired=false, EmitDefaultValue=false)]
        public byte[] WellKnownBinary { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.Runtime.Serialization.DataMemberAttribute(Order=2, IsRequired=false, EmitDefaultValue=false)]
        public string WellKnownText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
    }
    public abstract partial class DbSpatialDataReader
    {
        protected DbSpatialDataReader() { }
        public abstract System.Data.Spatial.DbGeography GetGeography(int ordinal);
        public abstract System.Data.Spatial.DbGeometry GetGeometry(int ordinal);
    }
    [System.SerializableAttribute]
    public abstract partial class DbSpatialServices
    {
        protected DbSpatialServices() { }
        public static System.Data.Spatial.DbSpatialServices Default { get { throw null; } }
        public abstract byte[] AsBinary(System.Data.Spatial.DbGeography geographyValue);
        public abstract byte[] AsBinary(System.Data.Spatial.DbGeometry geometryValue);
        public abstract string AsGml(System.Data.Spatial.DbGeography geographyValue);
        public abstract string AsGml(System.Data.Spatial.DbGeometry geometryValue);
        public abstract string AsText(System.Data.Spatial.DbGeography geographyValue);
        public abstract string AsText(System.Data.Spatial.DbGeometry geometryValue);
        public virtual string AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeography geographyValue) { throw null; }
        public virtual string AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
        public abstract System.Data.Spatial.DbGeography Buffer(System.Data.Spatial.DbGeography geographyValue, double distance);
        public abstract System.Data.Spatial.DbGeometry Buffer(System.Data.Spatial.DbGeometry geometryValue, double distance);
        public abstract bool Contains(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        protected static System.Data.Spatial.DbGeography CreateGeography(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue) { throw null; }
        protected static System.Data.Spatial.DbGeometry CreateGeometry(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue) { throw null; }
        public abstract object CreateProviderValue(System.Data.Spatial.DbGeographyWellKnownValue wellKnownValue);
        public abstract object CreateProviderValue(System.Data.Spatial.DbGeometryWellKnownValue wellKnownValue);
        public abstract System.Data.Spatial.DbGeographyWellKnownValue CreateWellKnownValue(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Data.Spatial.DbGeometryWellKnownValue CreateWellKnownValue(System.Data.Spatial.DbGeometry geometryValue);
        public abstract bool Crosses(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract System.Data.Spatial.DbGeography Difference(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract System.Data.Spatial.DbGeometry Difference(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract bool Disjoint(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract bool Disjoint(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract double Distance(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract double Distance(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract System.Data.Spatial.DbGeography ElementAt(System.Data.Spatial.DbGeography geographyValue, int index);
        public abstract System.Data.Spatial.DbGeometry ElementAt(System.Data.Spatial.DbGeometry geometryValue, int index);
        public abstract System.Data.Spatial.DbGeography GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyFromBinary(byte[] wellKnownBinary);
        public abstract System.Data.Spatial.DbGeography GeographyFromBinary(byte[] wellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyFromGml(string geographyMarkup);
        public abstract System.Data.Spatial.DbGeography GeographyFromGml(string geographyMarkup, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyFromProviderValue(object providerValue);
        public abstract System.Data.Spatial.DbGeography GeographyFromText(string wellKnownText);
        public abstract System.Data.Spatial.DbGeography GeographyFromText(string wellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyLineFromText(string lineWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyMultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyPointFromText(string pointWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeography GeographyPolygonFromText(string polygonWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryFromBinary(byte[] wellKnownBinary);
        public abstract System.Data.Spatial.DbGeometry GeometryFromBinary(byte[] wellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryFromGml(string geometryMarkup);
        public abstract System.Data.Spatial.DbGeometry GeometryFromGml(string geometryMarkup, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryFromProviderValue(object providerValue);
        public abstract System.Data.Spatial.DbGeometry GeometryFromText(string wellKnownText);
        public abstract System.Data.Spatial.DbGeometry GeometryFromText(string wellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryLineFromText(string lineWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryMultiPolygonFromText(string multiPolygonKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryPointFromText(string pointWellKnownText, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId);
        public abstract System.Data.Spatial.DbGeometry GeometryPolygonFromText(string polygonWellKnownText, int coordinateSystemId);
        public abstract System.Nullable<double> GetArea(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<double> GetArea(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeometry GetBoundary(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeometry GetCentroid(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeometry GetConvexHull(System.Data.Spatial.DbGeometry geometryValue);
        public abstract int GetCoordinateSystemId(System.Data.Spatial.DbGeography geographyValue);
        public abstract int GetCoordinateSystemId(System.Data.Spatial.DbGeometry geometryValue);
        public abstract int GetDimension(System.Data.Spatial.DbGeography geographyValue);
        public abstract int GetDimension(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<int> GetElementCount(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<int> GetElementCount(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<double> GetElevation(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<double> GetElevation(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeography GetEndPoint(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Data.Spatial.DbGeometry GetEndPoint(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeometry GetEnvelope(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeometry GetExteriorRing(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<int> GetInteriorRingCount(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<bool> GetIsClosed(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<bool> GetIsClosed(System.Data.Spatial.DbGeometry geometryValue);
        public abstract bool GetIsEmpty(System.Data.Spatial.DbGeography geographyValue);
        public abstract bool GetIsEmpty(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<bool> GetIsRing(System.Data.Spatial.DbGeometry geometryValue);
        public abstract bool GetIsSimple(System.Data.Spatial.DbGeometry geometryValue);
        public abstract bool GetIsValid(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<double> GetLatitude(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<double> GetLength(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<double> GetLength(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<double> GetLongitude(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<double> GetMeasure(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<double> GetMeasure(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<int> GetPointCount(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Nullable<int> GetPointCount(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeometry GetPointOnSurface(System.Data.Spatial.DbGeometry geometryValue);
        public abstract string GetSpatialTypeName(System.Data.Spatial.DbGeography geographyValue);
        public abstract string GetSpatialTypeName(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeography GetStartPoint(System.Data.Spatial.DbGeography geographyValue);
        public abstract System.Data.Spatial.DbGeometry GetStartPoint(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<double> GetXCoordinate(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Nullable<double> GetYCoordinate(System.Data.Spatial.DbGeometry geometryValue);
        public abstract System.Data.Spatial.DbGeometry InteriorRingAt(System.Data.Spatial.DbGeometry geometryValue, int index);
        public abstract System.Data.Spatial.DbGeography Intersection(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract System.Data.Spatial.DbGeometry Intersection(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract bool Intersects(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract bool Intersects(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract bool Overlaps(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract System.Data.Spatial.DbGeography PointAt(System.Data.Spatial.DbGeography geographyValue, int index);
        public abstract System.Data.Spatial.DbGeometry PointAt(System.Data.Spatial.DbGeometry geometryValue, int index);
        public abstract bool Relate(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry, string matrix);
        public abstract bool SpatialEquals(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract bool SpatialEquals(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract System.Data.Spatial.DbGeography SymmetricDifference(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract System.Data.Spatial.DbGeometry SymmetricDifference(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract bool Touches(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract System.Data.Spatial.DbGeography Union(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
        public abstract System.Data.Spatial.DbGeometry Union(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
        public abstract bool Within(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
    }
}
namespace System.Data.SqlClient
{
    [System.CLSCompliantAttribute(false)]
    public sealed partial class SqlProviderServices : System.Data.Common.DbProviderServices
    {
        internal SqlProviderServices() { }
        public static System.Data.SqlClient.SqlProviderServices SingletonInstance { get { throw null; } }
        protected override System.Data.Common.DbCommandDefinition CreateDbCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree) { throw null; }
        protected override void DbCreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
        protected override string DbCreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
        protected override bool DbDatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
        protected override void DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
        protected override System.Data.Spatial.DbSpatialServices DbGetSpatialServices(string versionHint) { throw null; }
        protected override System.Data.Common.DbProviderManifest GetDbProviderManifest(string versionHint) { throw null; }
        protected override string GetDbProviderManifestToken(System.Data.Common.DbConnection connection) { throw null; }
        protected override System.Data.Spatial.DbSpatialDataReader GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string versionHint) { throw null; }
        protected override void SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value) { }
    }
}