[System.Data] move to corefx (#4893)
[mono-project.git] / mcs / class / System.Data / corefx / SqlMetaData.cs
blobdcf7c48da8eeb37b564cbb5ebe33ae86bf2be4c7
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 using System;
6 using System.Data;
8 namespace Microsoft.SqlServer.Server
10 partial class SqlMetaData
12 public SqlMetaData (string name, SqlDbType dbType, Type userDefinedType) :
13 this (name, dbType, -1, 0, 0, 0, System.Data.SqlTypes.SqlCompareOptions.None, userDefinedType) { }
16 [MonoTODO]
17 public System.Data.DbType DbType {
18 get => throw new NotImplementedException();