示例#1
0
        public Column[] GetPrimaryKey(Table table)
        {
            Column column;

            return
                table.TryGetDbColumn(TableKeyMatchList(table), out column)
                    ? new[] {column}
                    : new Column[0];
        }