我们希望将 dbproj 升级到 sqlproj,以便我们可以将其指向新的 SQL 2012 数据库。我们现在有一个程序可以读取 .dbschema xml 文件以查找所有表和列并从中检索信息。我们使用这些数据来构建我们自己的自定义类。
新的 sqlproj 文件现在生成一个 dacpac,我们要对其进行查询以获取我们需要的数据。我编写了以下内容来尝试遍历 dacpac 并获取我需要的信息:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.SqlServer.Dac;
using Microsoft.SqlServer.Dac.Extensions;
using Microsoft.SqlServer.Dac.Model;
namespace DacPacReader
{
class Program
{
static void Main(string[] args)
{
using (System.IO.TextWriter writter = new System.IO.StreamWriter(@"c:\temp\output.txt"))
{
using (TSqlModel model = new TSqlModel(@"C:\temp\Data.dacpac"))
{
var allTables = model.GetObjects(DacQueryScopes.All, ModelSchema.Table);
foreach (var table in allTables)
{
writter.WriteLine(table.Name);
foreach (var column in table.GetChildren().Where(child => child.ObjectType.Name == "Column"))
{
writter.WriteLine("\t" + column.Name);
writter.WriteLine("\tProperties:");
foreach (var property in column.ObjectType.Properties)
{
writter.WriteLine("\t\t" + property.Name + "\t\t" + property.DataType.FullName);
}
writter.WriteLine("\tMetadata:");
foreach (var metaData in column.ObjectType.Metadata)
{
writter.WriteLine("\t\t" + metaData.Name + "\t\t" + metaData.DataType.FullName);
}
}
}
}
}
}
}
}
我不知道我这样做是否正确,或者是否有更好/更简单的方法。我不确定要在 Google/SE 上搜索什么,也找不到任何示例。
我可以看到变量列有一个名为 ContextObject 的非公共成员,它是一个 Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlSimpleColumn。如果我可以访问这个对象,那么我就可以从中提取我需要的所有信息。Table 也有一个类似的 ContextObject 可以帮助我。
无论如何,目前这会打开 dacpac 并检索所有表和列名。我得到的数据的一个例子是:
[dbo].[User]
[dbo].[User].[UserID]
Properties:
Collation System.String
IsIdentityNotForReplication System.Boolean
Nullable System.Boolean
IsRowGuidCol System.Boolean
Sparse System.Boolean
Expression Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlScriptProperty
Persisted System.Boolean
PersistedNullable System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]
Scale System.Int32
Precision System.Int32
Length System.Int32
IsMax System.Boolean
XmlStyle Microsoft.SqlServer.Dac.Model.XmlStyle
IdentityIncrement System.String
IdentitySeed System.String
IsFileStream System.Boolean
IsIdentity System.Boolean
Metadata:
ColumnType Microsoft.SqlServer.Dac.Model.ColumnType
基本上,我想做以下其中一项:
- 访问 ContextObject 以获取 Microsoft.Data.Tools.Schema.Sql.SchemaModel.* 对象或
- 从 ObjectType 属性中获取属性和元数据的值或
- 以更简单的方式从头开始获取这些信息
我们需要获取诸如列类型、是否可以为空以及列的比例和精度等信息