You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.0 KiB
64 lines
2.0 KiB
using OrmTest.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OrmTest.Demo
|
|
{
|
|
public class Mapper : DemoBase
|
|
{
|
|
public static void Init()
|
|
{
|
|
var db = GetInstance();
|
|
|
|
//auto fill ViewModelStudent3
|
|
var s11 = db.Queryable<Student, School>((st, sc) => st.SchoolId == sc.Id)
|
|
.Select<ViewModelStudent3>().ToList();
|
|
|
|
|
|
var s12 = db.Queryable<Student, School>((st, sc) => st.SchoolId == sc.Id).Select<ViewModelStudent3>()
|
|
|
|
.Mapper((it, cache) =>
|
|
{
|
|
|
|
var allSchools = cache.GetListByPrimaryKeys<School>(vmodel => vmodel.SchoolId);
|
|
//sql select shool where id (in(ViewModelStudent3[0].SchoolId , ViewModelStudent3[1].SchoolId...)
|
|
|
|
//Equal to allSchools
|
|
//var allSchools2= cache.Get(list =>
|
|
// {
|
|
// var ids=list.Select(i => it.SchoolId).ToList();
|
|
// return db.Queryable<School>().In(ids).ToList();
|
|
//});Complex writing metho
|
|
|
|
|
|
/*one to one*/
|
|
//Good performance
|
|
it.School = allSchools.FirstOrDefault(i => i.Id == it.SchoolId);
|
|
|
|
//Poor performance.
|
|
//it.School = db.Queryable<School>().InSingle(it.SchoolId);
|
|
|
|
|
|
/*one to many*/
|
|
it.Schools = allSchools.Where(i => i.Id == it.SchoolId).ToList();
|
|
|
|
|
|
/*C# syntax conversion*/
|
|
it.Name = it.Name == null ? "null" : it.Name;
|
|
|
|
}).ToList();
|
|
|
|
|
|
var s13 = db.Queryable<Student, School>((st, sc) => st.SchoolId == sc.Id).Select<ViewModelStudent3>()
|
|
|
|
.Mapper((it, cache) =>
|
|
{
|
|
it.Schools = db.Queryable<School>().Where(i => i.Id == it.SchoolId).ToList();
|
|
}).ToList();
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
|