Skip to content

Commit 4d4a2c3

Browse files
committed
Accept LikeExpr in like and not_like
1 parent a9eb30d commit 4d4a2c3

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

src/entity/column.rs

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use crate::{DbBackend, EntityName, Iden, IdenStatic, IntoSimpleExpr, Iterable};
22
use sea_query::{
3-
Alias, BinOper, DynIden, Expr, IntoIden, SeaRc, SelectStatement, SimpleExpr, Value,
3+
Alias, BinOper, DynIden, Expr, IntoIden, IntoLikeExpr, SeaRc, SelectStatement, SimpleExpr,
4+
Value,
45
};
56
use std::str::FromStr;
67

@@ -146,7 +147,7 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
146147
/// ```
147148
fn like<T>(&self, s: T) -> SimpleExpr
148149
where
149-
T: Into<String>,
150+
T: IntoLikeExpr,
150151
{
151152
Expr::col((self.entity_name(), *self)).like(s)
152153
}
@@ -164,11 +165,16 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
164165
/// ```
165166
fn not_like<T>(&self, s: T) -> SimpleExpr
166167
where
167-
T: Into<String>,
168+
T: IntoLikeExpr,
168169
{
169170
Expr::col((self.entity_name(), *self)).not_like(s)
170171
}
171172

173+
/// This is a simplified shorthand for a more general `like` method.
174+
/// Use `like` if you need something more complex, like specifying an escape character.
175+
///
176+
/// ## Examples
177+
///
172178
/// ```
173179
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
174180
///
@@ -188,6 +194,11 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
188194
Expr::col((self.entity_name(), *self)).like(pattern)
189195
}
190196

197+
/// This is a simplified shorthand for a more general `like` method.
198+
/// Use `like` if you need something more complex, like specifying an escape character.
199+
///
200+
/// ## Examples
201+
///
191202
/// ```
192203
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
193204
///
@@ -207,6 +218,11 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
207218
Expr::col((self.entity_name(), *self)).like(pattern)
208219
}
209220

221+
/// This is a simplified shorthand for a more general `like` method.
222+
/// Use `like` if you need something more complex, like specifying an escape character.
223+
///
224+
/// ## Examples
225+
///
210226
/// ```
211227
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
212228
///

0 commit comments

Comments
 (0)