Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LocaleTags (0.19 sec)

  1. tests/multi_primary_keys_test.go

    	DB.Model(&blog2).Association("LocaleTags").Replace(tag5, tag6)
    
    	var tags2 []Tag
    	DB.Model(&blog).Association("LocaleTags").Find(&tags2)
    	if !compareTags(tags2, []string{"tag1", "tag2", "tag3"}) {
    		t.Fatalf("CN Blog's tags should not be changed after EN Blog Replace")
    	}
    
    	var blog11 Blog
    	DB.Preload("LocaleTags").First(&blog11, "id = ? AND locale = ?", blog.ID, blog.Locale)
    Go
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Thu Jan 06 07:02:53 GMT 2022
    - 12.8K bytes
    - Viewed (0)
  2. schema/relationship_test.go

    		Locale     string `gorm:"primary_key"`
    		Subject    string
    		Body       string
    		Tags       []Tag `gorm:"many2many:blog_tags;"`
    		SharedTags []Tag `gorm:"many2many:shared_blog_tags;ForeignKey:id;References:id"`
    		LocaleTags []Tag `gorm:"many2many:locale_blog_tags;ForeignKey:id,locale;References:id"`
    	}
    
    	checkStructRelation(t, &Blog{},
    		Relation{
    			Name: "Tags", Type: schema.Many2Many, Schema: "Blog", FieldSchema: "Tag",
    Go
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Mon Apr 15 03:20:20 GMT 2024
    - 25.5K bytes
    - Viewed (0)
Back to top