forked from danbarua/Npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsqlDataObjects.xml
More file actions
32 lines (31 loc) · 1.08 KB
/
NpgsqlDataObjects.xml
File metadata and controls
32 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8" ?>
<DataObjectSupport xmlns="http://schemas.microsoft.com/VisualStudio/2007/07/Data/DataObjectSupport">
<Types>
<RootType>
<Properties>
<Property name="Host"/>
<Property name="Port"/>
<Property name="UserName"/>
<Property name="Database"/>
</Properties>
<Services>
<Service type="IVsDataObjectSelector" implementationType="Npgsql.VisualStudio.NpgsqlObjectSelector"/>
</Services>
</RootType>
<Type name="Table" 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" implementationType="Microsoft.VisualStudio.Data.Framework.AdoDotNet.AdoDotNetObjectSelector"/>
</Services>
</Type>
</Types>
</DataObjectSupport>