forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbMetaDataCollectionNames.cs
More file actions
20 lines (16 loc) · 926 Bytes
/
Copy pathDbMetaDataCollectionNames.cs
File metadata and controls
20 lines (16 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//------------------------------------------------------------------------------
// <copyright file="DbMetaDataCollectionNames.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">[....]</owner>
// <owner current="true" primary="false">[....]</owner>
//------------------------------------------------------------------------------
namespace System.Data.Common {
public static class DbMetaDataCollectionNames {
public static readonly string MetaDataCollections = "MetaDataCollections";
public static readonly string DataSourceInformation = "DataSourceInformation";
public static readonly string DataTypes = "DataTypes";
public static readonly string Restrictions = "Restrictions";
public static readonly string ReservedWords = "ReservedWords";
}
}