Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for csrsigner (0.05 seconds)

  1. generics.go

    	Table(name string, args ...interface{}) CreateInterface[T]
    	Create(ctx context.Context, r *T) error
    	CreateInBatches(ctx context.Context, r *[]T, batchSize int) error
    	Set(assignments ...clause.Assigner) SetCreateOrUpdateInterface[T]
    }
    
    type ChainInterface[T any] interface {
    	ExecInterface[T]
    	Scopes(scopes ...func(db *Statement)) ChainInterface[T]
    	Where(query interface{}, args ...interface{}) ChainInterface[T]
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sun Nov 02 14:09:18 GMT 2025
    - 25.9K bytes
    - Click Count (0)
  2. tests/generics_test.go

    		Set: []clause.Assignment{
    			{Column: clause.Column{Name: "amount"}, Value: 100},
    			{Column: clause.Column{Name: "state"}, Value: "new"},
    		},
    	}
    
    	// Verify it implements Assigner interface
    	assignments := assoc.Assignments()
    	if len(assignments) != 0 {
    		t.Errorf("Association.Assignments() should return empty slice, got %v", assignments)
    	}
    
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sun Nov 02 14:09:18 GMT 2025
    - 33.7K bytes
    - Click Count (0)
Back to Top