1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00
This commit is contained in:
John Guo 2023-10-11 21:34:17 +08:00 committed by GitHub
parent 7f1ce2aff3
commit 8c309ac9fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 1 deletions

View File

@ -797,3 +797,28 @@ func Test_Issue2787(t *testing.T) {
t.Assert(condWhere, "((`nickname`=?) OR (`password`=?)) AND (`passport`=?)")
})
}
// https://github.com/gogf/gf/issues/2907
func Test_Issue2907(t *testing.T) {
table := createInitTable()
defer dropTable(table)
gtest.C(t, func(t *gtest.T) {
var (
orm = db.Model(table)
err error
)
orm = orm.WherePrefixNotIn(
table,
"id",
[]int{
1,
2,
},
)
all, err := orm.OrderAsc("id").All()
t.AssertNil(err)
t.Assert(len(all), TableSize-2)
t.Assert(all[0]["id"], 3)
})
}

View File

@ -81,7 +81,7 @@ func (m *Model) WherePrefixNot(prefix string, column string, value interface{})
// WherePrefixNotIn builds `prefix.column NOT IN (in)` statement.
// See WhereBuilder.WherePrefixNotIn.
func (m *Model) WherePrefixNotIn(prefix string, column string, in interface{}) *Model {
return m.callWhereBuilder(m.whereBuilder.WherePrefixNot(prefix, column, in))
return m.callWhereBuilder(m.whereBuilder.WherePrefixNotIn(prefix, column, in))
}
// WherePrefixNotNull builds `prefix.columns[0] IS NOT NULL AND prefix.columns[1] IS NOT NULL ...` statement.