示例#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));
 }