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
|
<?xml version="1.0" encoding="utf-8"?>
<!--
***************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
This code is licensed under the Visual Studio SDK license terms.
THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
***************************************************************************
-->
<!--
Data object support describes a set of object types that can be used to
represent the structure of the data source as an object model. Underlying
object types are specific to the data source and describe information that
uniquely identifies instances of the type, properties of the type, and a set
of services that can perform useful actions given the type. Mapped object
types describe a mapping from the underlying object types to generic types
and properties, and can be consumed by data designers that do not have
knowledge of any specific data source.
-->
<DataObjectSupport xmlns="http://schemas.microsoft.com/VisualStudio/2007/07/Data/DataObjectSupport">
<!-- Underlying object types -->
<Types>
<!--
Defines the root type, which represents one object with no identifier.
-->
<RootType>
<!--
Properties are represented simply by their name and type. Note that
in this case the type is not specified, defaulting to "System.String".
-->
<Properties>
<Property name="Server" />
<Property name="Instance" />
<Property name="Login" />
<Property name="Database" />
<Property name="User" />
<Property name="Schema" />
</Properties>
<!--
Services are represented by a type name (typically an interface) and
a reference to some entity that implements it (typically a class).
Methods called on the service may be passed parameters specified in
the XML file, allowing the service to adapt depending on the context.
The parameters expected by any given method are defined by and
completely dependent on the service implementation.
-->
<Services>
<!--
This service provides the ability to select instances of this type.
The service implementation specified here is supplied by this sample
and provides better information than the basic sample. This is the
default implementation of this service registered by the sample so
it does not need to be explicitly specified here, but it is shown
anyway for sample purposes.
-->
<Service type="IVsDataObjectSelector" implementationType="Microsoft.Samples.VisualStudio.Data.ExtendedProvider.SqlObjectSelector" />
</Services>
</RootType>
<!--
Defines a type that represents a user. This type specifies a preferred
ordering, meaning services consuming the data object support model
directly (such as the data object store service) should ensure that
collections of this object type are ordered this way by default.
-->
<Type name="User" preferredOrdering="Name">
<!--
The identifier for a type defines the information required to uniquely
identify instances of the type. In this case only a name is needed.
-->
<Identifier>
<Part name="Name" />
</Identifier>
<Properties>
<!--
The name property is also an identifier part, so it is marked with
an attribute telling direct consumers of the data object support
model that this property and the identifier part with the same name
are in fact the same metadata. Omitting this attribute would be an
error as identifier parts and properties are in a single namespace.
-->
<Property name="Name" isIdentifierPart="true" />
<Property name="Id" />
<Property name="CreateDate" type="System.DateTime" />
<Property name="UpdateDate" type="System.DateTime" />
</Properties>
<Services>
<!--
The service implementation specified here makes a call to the
DbConnection.GetSchema() method on the ADO .NET provider. Since
this implementation is not in the main provider assembly, it must
be fully qualified.
-->
<Service type="IVsDataObjectSelector" implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetObjectSelector, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<!--
The SelectObjects method in this implementation takes one required
parameter that specifies the metadata collection name to pass to
the DbConnection.GetSchema() method. It also takes one optional
parameter that defines a mapping of underlying columns from the
resulting DataTable object to the actual names of properties
defined above. The parameter is expected to contain a list of
sub-parameters that define an expected property name (e.g. "Name")
with an inner parameter for the column name (e.g. "user_name").
-->
<Parameters method="SelectObjects">
<Parameter value="Users" />
<Parameter>
<Parameter value="Name">
<Parameter value="user_name" />
</Parameter>
<Parameter value="Id">
<Parameter value="uid" />
</Parameter>
<Parameter value="CreateDate">
<Parameter value="createdate" />
</Parameter>
<Parameter value="UpdateDate">
<Parameter value="updatedate" />
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents a table. Notice the preferred ordering
is on multiple identifier parts and specified as a comma-delimited list.
-->
<Type name="Table" preferredOrdering="Database, Schema, Name">
<!--
The identifier for a table contains multiple parts, indicating that a
database name, a schema name and a table name are all required to
uniquely identify the table object on the server.
-->
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
<Property name="Type" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetObjectSelector, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<!--
The GetSupportedRestrictions method in this implementation takes
zero or more optional parameters defining the identifier parts
and/or properties that may be restricted on when passed to the
SelectObjects method. By default, the restrictions are the same
as the set of identifier parts, however in this case the selector
supports restricting on table type in addition to the identifier
parts, so we explicitly specify the supported restrictions here.
-->
<Parameters method="GetSupportedRestrictions">
<Parameter value="Database" />
<Parameter value="Schema" />
<Parameter value="Name" />
<Parameter value="Type" />
</Parameters>
<Parameters method="SelectObjects">
<Parameter value="Tables" />
<Parameter>
<Parameter value="Database">
<Parameter value="TABLE_CATALOG" />
</Parameter>
<Parameter value="Schema">
<Parameter value="TABLE_SCHEMA" />
</Parameter>
<Parameter value="Name">
<Parameter value="TABLE_NAME" />
</Parameter>
<Parameter value="Type">
<Parameter value="TABLE_TYPE" />
</Parameter>
</Parameter>
</Parameters>
</Service>
<!--
This service provides the ability to build a DSRef object for a
given instance of this type. DSRef objects can be placed on the
clipboard and used to represent objects as they are copied and
pasted, or dragged and dropped, from one location to another. A
default implementation of this service has been registered by the
sample so it does not need to be explicitly specified here, but it
is shown anyway for sample purposes.
-->
<Service type="IDSRefBuilder" implementationType="Microsoft.VisualStudio.Data.Framework.DSRefBuilder, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<!--
The AppendToDSRef method in this implementation takes one or more
parameters that specify how the DSRef tree should be built given
values of identifier parts for an instance of this object type.
-->
<Parameters method="AppendToDSRef">
<!-- Top level parameters add nodes under the root node -->
<Parameter>
<!-- The node name (typically name of the object) -->
<Parameter value="{2}" />
<!-- The node owner (typically schema of the object) -->
<Parameter value="{1}" />
<!-- The node type (from the __DSREFTYPE enumeration) -->
<Parameter value="Table" />
<!-- The node extended type (not used very often) -->
<Parameter />
<!-- The node properties, identified by specific GUIDs -->
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="101" type="System.Int32" /> <!-- Table -->
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents a table column.
-->
<Type name="Column" preferredOrdering="Database, Schema, Table, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Table" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Int16" />
<Property name="DataType" />
<Property name="MaxLength" type="System.Int32" />
<Property name="Precision" type="System.Byte" />
<Property name="Scale" type="System.Int32" />
<Property name="IsNullable" />
<Property name="DefaultValue" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetObjectSelector, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Parameters method="SelectObjects">
<Parameter value="Columns" />
<Parameter>
<Parameter value="Database">
<Parameter value="TABLE_CATALOG" />
</Parameter>
<Parameter value="Schema">
<Parameter value="TABLE_SCHEMA" />
</Parameter>
<Parameter value="Table">
<Parameter value="TABLE_NAME" />
</Parameter>
<Parameter value="Name">
<Parameter value="COLUMN_NAME" />
</Parameter>
<Parameter value="Ordinal">
<Parameter value="ORDINAL_POSITION" />
</Parameter>
<Parameter value="DataType">
<Parameter value="DATA_TYPE" />
</Parameter>
<Parameter value="MaxLength">
<Parameter value="CHARACTER_MAXIMUM_LENGTH" />
</Parameter>
<Parameter value="Precision">
<Parameter value="NUMERIC_PRECISION" />
</Parameter>
<Parameter value="Scale">
<Parameter value="NUMERIC_SCALE" />
</Parameter>
<Parameter value="IsNullable">
<Parameter value="IS_NULLABLE" />
</Parameter>
<Parameter value="DefaultValue">
<Parameter value="COLUMN_DEFAULT" />
</Parameter>
</Parameter>
</Parameters>
</Service>
<Service type="IDSRefBuilder">
<Parameters method="AppendToDSRef">
<Parameter>
<Parameter value="{2}" />
<Parameter value="{1}" />
<Parameter value="Table" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="101" type="System.Int32" /> <!-- Table -->
</Parameter>
</Parameter>
<!-- This parameter specifies child nodes -->
<Parameter>
<Parameter>
<Parameter value="{3}" />
<Parameter />
<Parameter value="Field" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="102" type="System.Int32" /> <!-- Table_Column -->
</Parameter>
</Parameter>
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents an index.
-->
<Type name="Index" preferredOrdering="Database, Schema, Table, Name">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Table" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="IsUnique" type="System.Boolean" />
<Property name="IsPrimary" type="System.Boolean" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
<Service type="IDSRefBuilder">
<Parameters method="AppendToDSRef">
<Parameter>
<Parameter value="{2}" />
<Parameter value="{1}" />
<Parameter value="Table" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="101" type="System.Int32" /> <!-- Table -->
</Parameter>
</Parameter>
<Parameter>
<Parameter>
<Parameter value="{3}" />
<Parameter />
<Parameter value="Index" />
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents an index column.
-->
<Type name="IndexColumn" preferredOrdering="Database, Schema, Table, Index, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Table" />
<Part name="Index" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Byte" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
<Service type="IDSRefBuilder">
<Parameters method="AppendToDSRef">
<Parameter>
<Parameter value="{2}" />
<Parameter value="{1}" />
<Parameter value="Table" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="101" type="System.Int32" /> <!-- Table -->
</Parameter>
</Parameter>
<Parameter>
<Parameter>
<Parameter value="{3}" />
<Parameter />
<Parameter value="Index" />
<Parameter />
<Parameter />
<Parameter>
<Parameter>
<Parameter value="{4}" />
<Parameter />
<Parameter value="Field" />
</Parameter>
</Parameter>
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents a foreign key.
-->
<Type name="ForeignKey" preferredOrdering="Database, Schema, Table, Name">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Table" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="ReferencedTableSchema" />
<Property name="ReferencedTableName" />
<Property name="UpdateAction" type="System.Byte" />
<Property name="DeleteAction" type="System.Byte" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
</Services>
</Type>
<!--
Defines a type that represents a foreign key column.
-->
<Type name="ForeignKeyColumn" preferredOrdering="Database, Schema, Table, ForeignKey, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Table" />
<Part name="ForeignKey" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Int32" />
<Property name="ReferencedColumnName" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
</Services>
</Type>
<!--
Defines a type that represents a view.
-->
<Type name="View" preferredOrdering="Database, Schema, Name">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
<Property name="CheckOption" />
<Property name="IsUpdatable" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetObjectSelector, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Parameters method="SelectObjects">
<Parameter value="Views" />
<Parameter>
<Parameter value="Database">
<Parameter value="TABLE_CATALOG" />
</Parameter>
<Parameter value="Schema">
<Parameter value="TABLE_SCHEMA" />
</Parameter>
<Parameter value="Name">
<Parameter value="TABLE_NAME" />
</Parameter>
<Parameter value="CheckOption">
<Parameter value="CHECK_OPTION" />
</Parameter>
<Parameter value="IsUpdatable">
<Parameter value="IS_UPDATABLE" />
</Parameter>
</Parameter>
</Parameters>
</Service>
<Service type="IDSRefBuilder">
<Parameters method="AppendToDSRef">
<Parameter>
<Parameter value="{2}" />
<Parameter value="{1}" />
<Parameter value="View" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="301" type="System.Int32" /> <!-- View -->
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents a view column.
-->
<Type name="ViewColumn" preferredOrdering="Database, Schema, View, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="View" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Int16" />
<Property name="DataType" />
<Property name="MaxLength" type="System.Int32" />
<Property name="Precision" type="System.Byte" />
<Property name="Scale" type="System.Int32" />
<Property name="IsNullable" />
<Property name="DefaultValue" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetObjectSelector, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Parameters method="SelectObjects">
<Parameter value="Columns" />
<Parameter>
<Parameter value="Database">
<Parameter value="TABLE_CATALOG" />
</Parameter>
<Parameter value="Schema">
<Parameter value="TABLE_SCHEMA" />
</Parameter>
<Parameter value="View">
<Parameter value="TABLE_NAME" />
</Parameter>
<Parameter value="Name">
<Parameter value="COLUMN_NAME" />
</Parameter>
<Parameter value="Ordinal">
<Parameter value="ORDINAL_POSITION" />
</Parameter>
<Parameter value="DataType">
<Parameter value="DATA_TYPE" />
</Parameter>
<Parameter value="MaxLength">
<Parameter value="CHARACTER_MAXIMUM_LENGTH" />
</Parameter>
<Parameter value="Precision">
<Parameter value="NUMERIC_PRECISION" />
</Parameter>
<Parameter value="Scale">
<Parameter value="NUMERIC_SCALE" />
</Parameter>
<Parameter value="IsNullable">
<Parameter value="IS_NULLABLE" />
</Parameter>
<Parameter value="DefaultValue">
<Parameter value="COLUMN_DEFAULT" />
</Parameter>
</Parameter>
</Parameters>
</Service>
<Service type="IDSRefBuilder">
<Parameters method="AppendToDSRef">
<Parameter>
<Parameter value="{2}" />
<Parameter value="{1}" />
<Parameter value="View" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="301" type="System.Int32" /> <!-- View -->
</Parameter>
</Parameter>
<Parameter>
<Parameter>
<Parameter value="{3}" />
<Parameter />
<Parameter value="Field" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="302" type="System.Int32" /> <!-- View_Column -->
</Parameter>
</Parameter>
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents a stored procedure.
-->
<Type name="StoredProcedure" preferredOrdering="Database, Schema, Name">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
<Service type="IDSRefBuilder">
<Parameters method="AppendToDSRef">
<Parameter>
<Parameter value="{2}" />
<Parameter value="{1}" />
<Parameter value="StoredProcedure" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="401" type="System.Int32" /> <!-- Procedure -->
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents a stored procedure parameter.
-->
<Type name="StoredProcedureParameter" preferredOrdering="Database, Schema, StoredProcedure, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="StoredProcedure" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Int16" />
<Property name="DataType" />
<Property name="MaxLength" type="System.Int32" />
<Property name="Precision" type="System.Byte" />
<Property name="Scale" type="System.Int32" />
<Property name="IsOutput" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
</Services>
</Type>
<!--
Defines a type that represents a stored procedure column.
-->
<Type name="StoredProcedureColumn" preferredOrdering="Database, Schema, StoredProcedure, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="StoredProcedure" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Int16" />
<Property name="ProviderType" type="System.Int32" />
<Property name="FrameworkType" type="System.Type" />
<Property name="MaxLength" type="System.Int32" />
<Property name="Precision" type="System.Int16" />
<Property name="Scale" type="System.Int16" />
<Property name="IsNullable" type="System.Boolean" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
</Services>
</Type>
<!--
Defines a type that represents a function.
-->
<Type name="Function" preferredOrdering="Database, Schema, Name">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
<Property name="Type" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
<Service type="IDSRefBuilder">
<Parameters method="AppendToDSRef">
<Parameter>
<Parameter value="{2}" />
<Parameter value="{1}" />
<Parameter value="Function" />
<Parameter />
<Parameter>
<!-- GUID_DSRefProperty_PreciseType -->
<Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9">
<Parameter value="501" type="System.Int32" /> <!-- Function -->
</Parameter>
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
<!--
Defines a type that represents a function parameter.
-->
<Type name="FunctionParameter" preferredOrdering="Database, Schema, Function, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Function" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Int16" />
<Property name="DataType" />
<Property name="MaxLength" type="System.Int32" />
<Property name="Precision" type="System.Byte" />
<Property name="Scale" type="System.Int32" />
<Property name="IsOutput" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
</Services>
</Type>
<!--
Defines a type that represents a function column.
-->
<Type name="FunctionColumn" preferredOrdering="Database, Schema, Function, Ordinal">
<Identifier>
<Part name="Database" />
<Part name="Schema" />
<Part name="Function" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" type="System.Int16" />
<Property name="DataType" />
<Property name="MaxLength" type="System.Int32" />
<Property name="Precision" type="System.Byte" />
<Property name="Scale" type="System.Int32" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" />
</Services>
</Type>
<!--
Defines a type that represents a user defined type. User defined types
are specific to SQL Server 2005 or later, so the minSourceVersion
attribute is applied to ensure this type only exists for this version.
-->
<Type name="UserDefinedType" preferredOrdering="Name, Assembly" minSourceVersion="09">
<Identifier>
<Part name="Assembly" />
<Part name="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="CreateDate" type="System.DateTime" />
<Property name="IsFixedLength" type="System.Boolean" />
<Property name="MaxLength" type="System.Int32" />
</Properties>
<Services>
<Service type="IVsDataObjectSelector" implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetObjectSelector, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Parameters method="SelectObjects">
<Parameter value="UserDefinedTypes" />
<Parameter>
<Parameter value="Assembly">
<Parameter value="assembly_name" />
</Parameter>
<Parameter value="Name">
<Parameter value="udt_name" />
</Parameter>
<Parameter value="CreateDate">
<Parameter value="create_date" />
</Parameter>
<Parameter value="IsFixedLength">
<Parameter value="is_fixed_length" />
</Parameter>
<Parameter value="MaxLength">
<Parameter value="max_length" />
</Parameter>
</Parameter>
</Parameters>
</Service>
</Services>
</Type>
</Types>
<!-- Mapped object types -->
<MappedTypes>
<!--
The "Table" mapped type is a generic representation of object types that
represent raw tabular data in a relational object model. See the
Microsoft.VisualStudio.Data.Services.RelationalObjectModel.IVsDataTable
type for more information. The underlying type is obviously "Table".
-->
<MappedType name="Table" underlyingType="Table">
<!--
The selection element for a mapped type defines how to map a generic
request for instances of the mapped type to restrictions, filter and
ordering on the underlying type. In this case, there is a one-to-one
mapping between the Catalog, Schema and Name generic restrictions
defined for this mapped type and the underlying Database, Schema and
Name restrictions. There is also an additional restriction on the
table type to "BASE TABLE", ensuring only these types are returned.
-->
<Selection restrictions="{Catalog},{Schema},{Name},BASE TABLE" />
<!--
The Identifier element for a mapped type defines how to represent a
generic identifier in terms of an underlying identifier. In this
case it is simple; there is a one-to-one mapping between the Catalog,
Schema and Name generic identifier defined for this mapped type and
the underlying Database, Schema and Name identifier parts.
-->
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<!--
The Properties element for a mapped type defines how to represent
generic properties in terms of underlying properties.
-->
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
<Property name="Type" underlyingMember="Schema">
<!--
The generic Type property is supposed to represent whether the
table is a user or system table, with the strings "USER" and
"SYSTEM" respectively. There is no explicit information in the
underlying type for this, but there is a heuristic based on the
underlying Schema property value: if the table is in the
INFORMATION_SCHEMA schema, then it must be a system table, else
assume it is a user table. To specify this, a Conversion element
is used with one conversion step, which calculates the value.
-->
<Conversion>
<Calculate expr="IIF(NOT ({0} = 'INFORMATION_SCHEMA'), 'USER', 'SYSTEM')" exprType="System.String" />
</Conversion>
</Property>
</Properties>
</MappedType>
<!--
The "TableColumn" mapped type is a generic representation of object
types that represent columns in tables. See the Microsoft.VisualStudio.
Data.Services.RelationalObjectModel.IVsDataTableColumn type for more
information. Notice how the name of the mapped type and the underlying
type are different in this case.
-->
<MappedType name="TableColumn" underlyingType="Column">
<Selection restrictions="{Catalog},{Schema},{Table},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Table" underlyingMember="Table" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<!--
The generic Ordinal property is defined as a System.Int32 type
but the underlying member returns a System.Int16, so a conversion
is required with a ChangeType step to produce the correct value.
-->
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="UserDataType" underlyingMember="DataType" />
<Property name="NativeDataType" underlyingMember="DataType" />
<Property name="AdoDotNetDataType" underlyingMember="DataType">
<!--
The generic AdoDotNetDataType property is defined to be a value
from the ADO .NET provider specific enumeration representing the
column data type, when the DDEX provider technology is ADO .NET.
Since the underlying type only returns a string representation of
the data type, a custom mapper is required to convert these
strings into the appropriate value. Fortunately, the default
ADO .NET implementation of the IVsDataMappedObjectConverter
interface has this capability, using the ADO .NET DataTypes schema
collection. Since it is the default implementation it does not
need to be explicitly specified here, however it is shown anyway
for sample purposes.
-->
<Conversion>
<CallMapper implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetMappedObjectConverter, Microsoft.VisualStudio.Data.Framework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</Conversion>
</Property>
<Property name="AdoDotNetDbType" underlyingMember="DataType">
<!--
The generic AdoDotNetDbType property is defined to be a value from
the System.Data.DbType enumeration representing the column data
type, when the DDEX provider technology is ADO .NET. The default
implementation of the IVsDataMappedObjectConverter interface is
able to infer this value based on information in the ADO .NET
DataTypes schema collection.
-->
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="FrameworkDataType" underlyingMember="DataType">
<!--
The generic FrameworkDataType property is defined to be a
System.Type representation of the column data type. The default
implementation of the IVsDataMappedObjectConverter interface is
able to produce this value based on information in the ADO .NET
DataTypes schema collection.
-->
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="Length" underlyingMember="MaxLength" />
<Property name="Precision" underlyingMember="Precision">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Scale" underlyingMember="Scale" />
<Property name="IsNullable" underlyingMember="IsNullable">
<Conversion>
<Calculate expr="IIF({0} = 'YES', true, false)" exprType="System.Boolean" />
</Conversion>
</Property>
<!--
Notice that while the mapped type defines an IsComputed property,
there is no property on the underlying type that supplies this
information. Only properties that can be mapped should be mapped;
others should be omitted. Therefore this property is not included.
-->
<!-- <Property name="IsComputed" underlyingMember="<none>" /> -->
<Property name="DefaultValue" underlyingMember="DefaultValue" />
</Properties>
</MappedType>
<!--
The "TableUniqueKey" mapped type is a generic representation of object
types that represent unique keys in tables. See the Microsoft.
VisualStudio.Data.Services.RelationalObjectModel.IVsDataTableUniqueKey
type for more information. Notice the mapping to the underlying type
"Index"; in SQL Server all unique keys are represented as indexes.
-->
<MappedType name="TableUniqueKey" underlyingType="Index">
<!--
Since the underlying type represents objects with greater scope than
just table unique keys, a filter must be supplied to ensure only the
indexes that are unique get returned when selecting this mapped type.
-->
<Selection restrictions="{Catalog},{Schema},{Table},{Name}" filter="IsUnique = true" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Table" underlyingMember="Table" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="IsPrimary" underlyingMember="IsPrimary" />
</Properties>
</MappedType>
<!--
The "TableUniqueKeyColumn" mapped type is a generic representation of
object types that represent unique keys in tables. See the Microsoft.
VisualStudio.Data.Services.RelationalObjectModel.
IVsDataTableUniqueKeyColumn type for more information. Notice the
mapping to the underlying type "IndexColumns"; in SQL Server all unique
key columns are represented as index columns.
-->
<MappedType name="TableUniqueKeyColumn" underlyingType="IndexColumn">
<Selection restrictions="{Catalog},{Schema},{Table},{TableUniqueKey},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Table" underlyingMember="Table" />
<Part name="TableUniqueKey" underlyingMember="Index" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
</Properties>
</MappedType>
<!--
The "TableForeignKey" mapped type is a generic representation of object
types that represent foreign keys in tables. See the Microsoft.
VisualStudio.Data.Services.RelationalObjectModel.IVsDataTableForeignKey
type for more information.
-->
<MappedType name="TableForeignKey" underlyingType="ForeignKey">
<Selection restrictions="{Catalog},{Schema},{Table},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Table" underlyingMember="Table" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<!--
The properties for this mapped type are quite special in that they
need to reference another table object. The preferred method for
doing this is to map generic properties representing the generic
identifier of the referenced table. When this is not possible, an
alternative method is to map generic properties representing the
underlying identifier of the referenced table. For completeness
purposes, it is recommended to specify both when possible. This
sample illustrates mapping both ways.
-->
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="ReferencedTableId0" underlyingMember="Database" />
<Property name="ReferencedTableId1" underlyingMember="ReferencedTableSchema" />
<Property name="ReferencedTableId2" underlyingMember="ReferencedTableName" />
<Property name="ReferencedTableCatalog" underlyingMember="Database" />
<Property name="ReferencedTableSchema" underlyingMember="ReferencedTableSchema" />
<Property name="ReferencedTableName" underlyingMember="ReferencedTableName" />
<!--
The update action is a value from the System.Data.Rule enumeration
and it just happens that the underlying values are the same mapping.
-->
<Property name="UpdateAction" underlyingMember="UpdateAction">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<!--
The delete action is a value from the System.Data.Rule enumeration
and it just happens that the underlying values are the same mapping.
-->
<Property name="DeleteAction" underlyingMember="DeleteAction">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
</Properties>
</MappedType>
<!--
The "TableForeignKeyColumn" mapped type is a generic representation of
object types that represent unique keys in tables. See the Microsoft.
VisualStudio.Data.Services.RelationalObjectModel.
IVsDataTableForeignKeyColumn type for more information.
-->
<MappedType name="TableForeignKeyColumn" underlyingType="ForeignKeyColumn">
<Selection restrictions="{Catalog},{Schema},{Table},{TableForeignKey},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Table" underlyingMember="Table" />
<Part name="TableForeignKey" underlyingMember="ForeignKey" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="ReferencedTableColumn" underlyingMember="ReferencedColumnName" />
</Properties>
</MappedType>
<!--
The "View" mapped type is a generic representation of object types that
represent derived tabular data in a relational object model. See the
Microsoft.VisualStudio.Data.Services.RelationalObjectModel.IVsDataView
type for more information.
-->
<MappedType name="View" underlyingType="View">
<Selection restrictions="{Catalog},{Schema},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
</Properties>
</MappedType>
<!--
The "ViewColumn" mapped type is a generic representation of object
types that represent columns in views. See the Microsoft.VisualStudio.
Data.Services.RelationalObjectModel.IVsDataColumn type for more
information.
-->
<MappedType name="ViewColumn" underlyingType="ViewColumn">
<Selection restrictions="{Catalog},{Schema},{View},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="View" underlyingMember="View" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="UserDataType" underlyingMember="DataType" />
<Property name="NativeDataType" underlyingMember="DataType" />
<Property name="AdoDotNetDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="AdoDotNetDbType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="FrameworkDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="Length" underlyingMember="MaxLength" />
<Property name="Precision" underlyingMember="Precision">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Scale" underlyingMember="Scale" />
<Property name="IsNullable" underlyingMember="IsNullable">
<Conversion>
<Calculate expr="IIF({0} = 'YES', true, false)" exprType="System.Boolean" />
</Conversion>
</Property>
</Properties>
</MappedType>
<!--
The "StoredProcedure" mapped type is a generic representation of object
types that represent executable code with parameters that may return
tabular data. See the Microsoft.VisualStudio.Data.Services.
RelationalObjectModel.IVsDataStoredProcedure type for more information.
-->
<MappedType name="StoredProcedure" underlyingType="StoredProcedure">
<Selection restrictions="{Catalog},{Schema},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
</Properties>
</MappedType>
<!--
The "StoredProcedureParameter" mapped type is a generic representation
of object types that represent parameters in stored procedures. See the
Microsoft.VisualStudio.Data.Services.RelationalObjectModel.
IVsDataParameter type for more information.
-->
<MappedType name="StoredProcedureParameter" underlyingType="StoredProcedureParameter">
<Selection restrictions="{Catalog},{Schema},{StoredProcedure},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="StoredProcedure" underlyingMember="StoredProcedure" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<!--
Based on the underlying metadata available, the generic direction
property must be computed from two underlying members, which can be
done by specifying the underlyingMembers attribute.
-->
<Property name="Direction" underlyingMembers="Ordinal, IsOutput">
<Conversion>
<!--
This calculation says if the Ordinal equals 0, it is a return
value parameter. Otherwise if IsOutput = false, it is an input
parameter, else it is both input and output.
-->
<Calculate expr="IIF({0} > 0, IIF({1} = false, 'IN', 'IN/OUT'), 'RETVAL')" exprType="System.String" />
</Conversion>
</Property>
<Property name="UserDataType" underlyingMember="DataType" />
<Property name="NativeDataType" underlyingMember="DataType" />
<Property name="AdoDotNetDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="AdoDotNetDbType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="FrameworkDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="Length" underlyingMember="MaxLength" />
<Property name="Precision" underlyingMember="Precision">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Scale" underlyingMember="Scale" />
</Properties>
</MappedType>
<!--
The "StoredProcedureColumn" mapped type is a generic representation
of object types that represent returned columns in stored procedures.
See the Microsoft.VisualStudio.Data.Services.RelationalObjectModel.
IVsDataColumn type for more information.
-->
<MappedType name="StoredProcedureColumn" underlyingType="StoredProcedureColumn">
<Selection restrictions="{Catalog},{Schema},{StoredProcedure},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="StoredProcedure" underlyingMember="StoredProcedure" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal" />
<Property name="AdoDotNetDataType" underlyingMember="ProviderType" />
<Property name="FrameworkDataType" underlyingMember="FrameworkType">
<Conversion>
<ChangeType type="System.String" />
</Conversion>
</Property>
<Property name="Length" underlyingMember="MaxLength" />
<Property name="Precision" underlyingMember="Precision">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Scale" underlyingMember="Scale">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="IsNullable" underlyingMember="IsNullable" />
</Properties>
</MappedType>
<!--
The "ScalarFunction" mapped type is a generic representation of object
types that represent executable code with parameters that returns a
scalar value. See the Microsoft.VisualStudio.Data.Services.
RelationalObjectModel.IVsDataScalarFunction type for more information.
-->
<MappedType name="ScalarFunction" underlyingType="Function">
<!--
Notice how the selection of this mapped type limits the selection on
the underlying type to those objects of type "FN" or "FS".
-->
<Selection restrictions="{Catalog},{Schema},{Name}" filter="Type IN ('FN', 'FS')" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
</Properties>
</MappedType>
<!--
The "ScalarFunctionParameter" mapped type is a generic representation
of object types that represent parameters in scalar functions. See the
Microsoft.VisualStudio.Data.Services.RelationalObjectModel.
IVsDataParameter type for more information.
-->
<MappedType name="ScalarFunctionParameter" underlyingType="FunctionParameter">
<Selection restrictions="{Catalog},{Schema},{ScalarFunction},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="ScalarFunction" underlyingMember="Function" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Direction" underlyingMembers="Ordinal, IsOutput">
<Conversion>
<Calculate expr="IIF({0} > 0, IIF({1} = false, 'IN', 'IN/OUT'), 'RETVAL')" exprType="System.String" />
</Conversion>
</Property>
<Property name="UserDataType" underlyingMember="DataType" />
<Property name="NativeDataType" underlyingMember="DataType" />
<Property name="AdoDotNetDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="AdoDotNetDbType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="FrameworkDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="Length" underlyingMember="MaxLength" />
<Property name="Precision" underlyingMember="Precision">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Scale" underlyingMember="Scale" />
</Properties>
</MappedType>
<!--
The "TabularFunction" mapped type is a generic representation of object
types that represent executable code with parameters that returns a
tabular structure. See the Microsoft.VisualStudio.Data.Services.
RelationalObjectModel.IVsDataTabularFunction type for more information.
-->
<MappedType name="TabularFunction" underlyingType="Function">
<!--
Notice how the selection of this mapped type limits the selection on
the underlying type to those objects of type "FT", "IF" or "TF".
-->
<Selection restrictions="{Catalog},{Schema},{Name}" filter="Type IN ('FT', 'IF', 'TF')" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Schema" isIdentifierPart="true" />
</Properties>
</MappedType>
<!--
The "TabularFunctionParameter" mapped type is a generic representation
of object types that represent parameters in tabular functions. See the
Microsoft.VisualStudio.Data.Services.RelationalObjectModel.
IVsDataParameter type for more information.
-->
<MappedType name="TabularFunctionParameter" underlyingType="FunctionParameter">
<Selection restrictions="{Catalog},{Schema},{TabularFunction},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="TabularFunction" underlyingMember="Function" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Direction" underlyingMembers="Ordinal, IsOutput">
<Conversion>
<Calculate expr="IIF({0} > 0, IIF({1} = false, 'IN', 'IN/OUT'), 'RETVAL')" exprType="System.String" />
</Conversion>
</Property>
<Property name="UserDataType" underlyingMember="DataType" />
<Property name="NativeDataType" underlyingMember="DataType" />
<Property name="AdoDotNetDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="AdoDotNetDbType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="FrameworkDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="Length" underlyingMember="MaxLength" />
<Property name="Precision" underlyingMember="Precision">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Scale" underlyingMember="Scale" />
</Properties>
</MappedType>
<!--
The "TabularFunctionColumn" mapped type is a generic representation
of object types that represent returned columns in tabular functions.
See the Microsoft.VisualStudio.Data.Services.RelationalObjectModel.
IVsDataColumn type for more information.
-->
<MappedType name="TabularFunctionColumn" underlyingType="FunctionColumn">
<Selection restrictions="{Catalog},{Schema},{TabularFunction},{Name}" />
<Identifier>
<Part name="Catalog" underlyingMember="Database" />
<Part name="Schema" underlyingMember="Schema" />
<Part name="TabularFunction" underlyingMember="Function" />
<Part name="Name" underlyingMember="Name" />
</Identifier>
<Properties>
<Property name="Name" isIdentifierPart="true" />
<Property name="Ordinal" underlyingMember="Ordinal">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="UserDataType" underlyingMember="DataType" />
<Property name="NativeDataType" underlyingMember="DataType" />
<Property name="AdoDotNetDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="AdoDotNetDbType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="FrameworkDataType" underlyingMember="DataType">
<Conversion>
<CallMapper />
</Conversion>
</Property>
<Property name="Length" underlyingMember="MaxLength" />
<Property name="Precision" underlyingMember="Precision">
<Conversion>
<ChangeType type="System.Int32" />
</Conversion>
</Property>
<Property name="Scale" underlyingMember="Scale" />
</Properties>
</MappedType>
</MappedTypes>
</DataObjectSupport>
|