Skip to content

alameddinc/gorm-db-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gorm-db-builder

Türkçe Kullanım Örneği

Detaylı Kullanım örneklerini aşağıdaki makaleden inceleyebilirsiniz. https://alameddinc.medium.com/gorm-db-için-arayüz-geliştirmek-4df6fd641840

Örnek Kullanımlar (V1)

Connection İçin Örnek Fonksiyon

import (
	. "github.com/alameddinc/gorm-db-builder"
	"gorm.io/driver/postgres"
	"gorm.io/gorm"
)

func Connection() *Connector{
	dsn := "host=127.0.0.1 user=username password=password DB.name=database port=5432 sslmode=disable"
	db, err := gorm.Open(postgres.Open(dsn), &gorm.Config{})
	if err != nil {
		panic(err)
	}
	return &Connector{RawConnection: db}
}

Kütüphane Fonksiyonının Örnek Kullanımları

FetchOne

func (p *Class) FetchOne(with ...string) error {  
   return DB.FetchOne(p, nil, with...)  
}

FetchAll

type Cities []City  
  
func (p *Cities) FetchAll(where *City, with ...string) error {  
   if where == nil {  
      where = &City{}  
   }  
   return DB.FetchAll(p, where, nil, with...)  
}

Update

func (p *City) Update(update *City) error {  
   return DB.Update(p, update, nil)  
}

//Bulk Update
type Cities []City 

func (p *Cities) UpdateBulk(update *City) error {  
   return DB.Update(p, update, nil)  
}

Save

func (p *City) Save() error {  
   err := DB.Save(p)  
   if err != nil {  
      return err  
   }  
   return p.FetchOne()  
}

// Bulk Save
type Cities []City  
  
func (p *Cities) SaveBulk() error {  
   err := DB.Save(p)  
   if err != nil {  
      return err  
   }  
   return p.FetchOne()  
}

FetchAll


type Cities []City  
func (p *Cities) DeleteBulk() error {  
   return DB.Remove(p, nil)  
}

Remove

func (p *City) Delete() error {  
   return DB.Remove(p, nil)  
}

//Bulk Remove
type Cities []City  
  
func (p *Cities) FetchAll(where *City, with ...string) error {  
   return DB.Remove(p, nil)  
}

FetchOneWithId

func (p *City) FetchOneWithId(id int, with ...string) error {  
   return DB.FetchOneWithID(p, id, nil, with...) 
}