예제 #1
0
 public bool IsSameOption(DbSpecificOption other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Engine == other.Engine && Name == other.Name);
 }
예제 #2
0
 public bool IsSameOption(DbSpecificOption other)
 {
     if (other == null) return false;
     return Engine == other.Engine && Name == other.Name;
 }