1
1
use crate :: { DbBackend , EntityName , Iden , IdenStatic , IntoSimpleExpr , Iterable } ;
2
2
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 ,
4
5
} ;
5
6
use std:: str:: FromStr ;
6
7
@@ -146,7 +147,7 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
146
147
/// ```
147
148
fn like < T > ( & self , s : T ) -> SimpleExpr
148
149
where
149
- T : Into < String > ,
150
+ T : IntoLikeExpr ,
150
151
{
151
152
Expr :: col ( ( self . entity_name ( ) , * self ) ) . like ( s)
152
153
}
@@ -164,11 +165,16 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
164
165
/// ```
165
166
fn not_like < T > ( & self , s : T ) -> SimpleExpr
166
167
where
167
- T : Into < String > ,
168
+ T : IntoLikeExpr ,
168
169
{
169
170
Expr :: col ( ( self . entity_name ( ) , * self ) ) . not_like ( s)
170
171
}
171
172
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
+ ///
172
178
/// ```
173
179
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
174
180
///
@@ -188,6 +194,11 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
188
194
Expr :: col ( ( self . entity_name ( ) , * self ) ) . like ( pattern)
189
195
}
190
196
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
+ ///
191
202
/// ```
192
203
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
193
204
///
@@ -207,6 +218,11 @@ pub trait ColumnTrait: IdenStatic + Iterable + FromStr {
207
218
Expr :: col ( ( self . entity_name ( ) , * self ) ) . like ( pattern)
208
219
}
209
220
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
+ ///
210
226
/// ```
211
227
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
212
228
///
0 commit comments