Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for upsert (0.15 sec)

  1. tests/joins_test.go

    	if user2.NamedPet == nil || user2.Account.ID != 0 {
    		t.Fatalf("joins Account should not empty:%v", user2)
    	}
    
    	// NamedPet should empty
    	DB.Delete(&user1.NamedPet)
    
    	var user3 User
    	DB.Model(&User{}).Joins("NamedPet").Joins("Account").First(&user3, user.ID)
    	if user3.NamedPet != nil || user2.Account.ID != 0 {
    		t.Fatalf("joins NamedPet and Account should not empty:%v", user2)
    	}
    }
    
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Wed Apr 26 14:19:32 GMT 2023
    - 13.5K bytes
    - Viewed (1)
Back to top