constraint.cs

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

CS
19
字号
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ScriptGenerator
{
    public struct Constraint
    {
        public string ConstraintTableName { get; set; }
        public string ConstraintName { get; set; }
        public string ColumnName { get; set; }
        public string UniqueConstraintTableName { get; set; }
        public string UniqueConstraintName { get; set; }
        public string UniqueColumnName { get; set; }
        public int OrdinalPosition { get; set; }
    }
}

⌨️ 快捷键说明

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