Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nu (0.05 sec)

  1. tests/generics_test.go

    		t.Fatalf("failed to get affected rows, got %d, should be %d", rows, 1)
    	}
    
    	nu, err = gorm.G[User](DB).Where("id = ?", u.ID).Last(ctx)
    	if err != nil {
    		t.Fatalf("failed to find user, got error: %v", err)
    	} else if nu.Name != "GenericsExecUpdates" || nu.Age != 18 || u.ID != nu.ID {
    		t.Fatalf("found invalid user, got %v, expect %v", nu.ID, u.ID)
    	}
    }
    
    func TestGenericsRow(t *testing.T) {
    	ctx := context.Background()
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 28K bytes
    - Viewed (0)
  2. docs/nl/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    ## Voorbeeld upgrade
    
    Pas nu het bestand `main.py` aan om de body van een `PUT` request te ontvangen.
    
    Dankzij Pydantic kunnen we de body declareren met standaard Python types.
    
    ```Python hl_lines="4  9-12  25-27"
    from typing import Union
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
Back to top