Ejemplo n.º 1
0
 public async void Error_On_PrimaryKey_Selector_Not_In_Column_List(string location, string primaryKey)
 {
     await VerifyPrimaryKeyErrorRaised(BuilderError.SelectorNotMappedToColumn("FirstName", "Users"), location, primaryKey);
 }
Ejemplo n.º 2
0
 public async void Error_On_ReferenceColumn_Not_In_Column_List(string location, string foreignKey)
 {
     await VerifyForeignKeyErrorRaised(BuilderError.SelectorNotMappedToColumn("ZipCode", "Addresses"), foreignKey, location);
 }
Ejemplo n.º 3
0
 public async void Error_On_KeyColumn_Not_In_Column_List(string location, string foreignKey)
 {
     await VerifyForeignKeyErrorRaised(BuilderError.SelectorNotMappedToColumn("FirstName", "Users"), foreignKey, location);
 }
Ejemplo n.º 4
0
 public async void Error_On_IncludedColumn_Not_In_Column_List(string location, string index)
 {
     await VerifyIndexErrorRaised(BuilderError.SelectorNotMappedToColumn("FirstName", "Users"), location, index);
 }