ischemareader.cs

来自「NHibernate NET开发者所需的」· CS 代码 · 共 13 行

CS
13
字号
namespace NHibernate.Tool.hbm2ddl
{
	using System.Data;

	public interface ISchemaReader
	{
		DataTable GetTables(string schema, string name, string[] types);
		DataTable GetColumns(string schema, string name);
		DataTable GetIndexInfo(string schema, string name);
		DataTable GetForeignKeys(string schema, string name);
		DataTable GetIndexColumns(string schema, string name, string constraint);
	}
}

⌨️ 快捷键说明

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