Inheritance: DataClientAction, IAddPrimaryKeyOnColumns, IAddPrimaryKeyOfTable
Exemplo n.º 1
0
        public IAddPrimaryKeyOnColumns PrimaryKey(string primaryKeyName)
        {
            var action = new AddPrimaryKey(_dataClient, primaryKeyName);

            FireOnAction(action);
            return(action);
        }
Exemplo n.º 2
0
 public IAddPrimaryKeyOnColumns PrimaryKey(string primaryKeyName)
 {
     var action = new AddPrimaryKey(_dataClient, primaryKeyName);
     FireOnAction(action);
     return action;
 }