コード例 #1
0
        public DatabaseModel CreateModel(string createSql, TableSelectionSet selection = null)
        {
            _testStore.ExecuteNonQuery(createSql);

            var reader = new SqlServerDatabaseModelFactory();

            return(reader.Create(_testStore.Connection.ConnectionString, selection ?? TableSelectionSet.All));
        }