irepository.cs

来自「sqlce查询分析器」· CS 代码 · 共 22 行

CS
22
字号
using System;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.Text;

namespace ScriptGenerator
{
    public interface IRepository
    {
        List<string> GetAllTableNames();
        List<Column> GetColumnsFromTable(string tableName);
        DataTable GetDataFromTable(string tableName);
        List<string> GetPrimaryKeysFromTable(string tableName);
        List<Constraint> GetAllForeignKeys();
        List<Index> GetIndexesFromTable(string tableName);
    }


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?