You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 18, 2021. It is now read-only.
var query = new Query(context)
..resultingProperties((e) => [e.id, e.name]);
var employees = await query.fetch();
If I just need some Columns. I can definition Class like the following
Class EmployeeOutPutDto{
String name;
int age;
}
var query = new Query<Employee>(context)
var employees = await query.fetch().tolist();
var result=Mapper<List<EmployeeOutPutDto>>(employees );
return result;