Enhancement 91 : ENHANCEMENT: Query By Example ... type expression
Priority 
High
Reported Version 
 
Logged By 
Rob
Status 
Fixed
Fixed Version 
1.1.0
Assigned To 
 
Product 
Ebean - core
Duplicate Of 
 
Created 
19/03/2009
Updated 
19/03/2009
Type 
Enhancement
 
Attachments 
No attachments

Jacob Champlin supplied the request for ... and code to support query by example.

  1. MinCustomer example = new MinCustomer();  
  2. example.setName("Rob%");  
  3. example.setNotes("%something%");  
  4.          
  5. List<MinCustomer> list = Ebean.find(MinCustomer.class)  
  6.   .where()  
  7.     .exampleLike(example)  
  8.     .gt("id"2)  
  9.     .findList();  
 
Rob 19 Mar 07:56
And produces...
  1. select c.id, c.name, c.notes  
  2. from o_customer c  
  3. where (c.name like ?  and c.notes like ? )  and c.id > ?  

woResponse

Upload a file