Jak przemierzać dacpac

Chcemy uaktualnić nasz dbproj do sqlproj, abyśmy mogli go wskazać na nową bazę danych SQL 2012. W tej chwili mamy program, który odczytuje plik xml .dbschema, aby znaleźć wszystkie tabele i kolumny oraz pobrać z nich informacje. Używamy tych danych do budowania własnych klas niestandardowych.

Nowy plik sqlproj tworzy teraz dacpac, który chcemy łączyć, aby uzyskać potrzebne dane. Napisałem poniższe, aby spróbować przejść przez dacpac i uzyskać informacje, których potrzebuję:

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);
                            }
                        }
                    }
                }
            }
        }
    }
}

Nie mam pojęcia, czy robię to we właściwy sposób, czy też istnieje znacznie lepszy / łatwiejszy sposób. Nie wiem, czego szukać w Google / S.E. i nie mogę znaleźć żadnych przykładów.

Widzę, że kolumna zmiennej ma niepublicznego członka o nazwie ContextObject, który jest Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlSimpleColumn. Gdybym mógł uzyskać dostęp do tego obiektu, byłbym w stanie wyciągnąć z niego wszystkie potrzebne informacje. Tabela ma również podobny obiekt ContextObject, który mógłby mi pomóc.

W każdym razie obecnie otwiera dacpac i pobiera wszystkie nazwy tabel i kolumn. Przykładem otrzymanych danych jest:

[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

Zasadniczo chciałbym wykonać jedną z następujących czynności:

Uzyskaj dostęp do ContextObject, aby uzyskać obiekt Microsoft.Data.Tools.Schema.Sql.SchemaModel. * ORUzyskaj wartość właściwości i metadanych z właściwości ObjectType LUBZacznij od podstaw, korzystając z łatwiejszego sposobu uzyskania tych informacji

Musimy uzyskać informacje, takie jak typ kolumny, howif, który jest dopuszczalny, a także skalę i precyzję kolumny

questionAnswers(2)

yourAnswerToTheQuestion