MySql.Data.VisualStudio.DbObjects.ForeignKey.ForeignKey C# (CSharp) Method

ForeignKey() private method

private ForeignKey ( Table t ) : System
t Table
return System
    private ForeignKey(Table t)
    {
      Table = t;
      SetName(String.Format("FK_{0}_{0}", t.Name), true);
      Columns = new List<FKColumnPair>();
    }

Same methods

ForeignKey::ForeignKey ( Table t, DataRow keyData ) : System