예제 #1
0
파일: Table.cs 프로젝트: srasch/marten
 protected bool Equals(Table other)
 {
     return(Columns.OrderBy(x => x.Name).SequenceEqual(other.OrderBy(x => x.Name)) && Equals(PrimaryKey, other.PrimaryKey) && Identifier.Equals(other.Identifier));
 }