11 2019 档案
摘要:static void Main(string[] args) { //模拟数据源 List<Preson> l = new List<Preson>(); for (int i = 1; i <= 100; i++) { Preson p = new Preson(); p.id = i; p.a
阅读全文
摘要:using AutoMapper;using System;using System.Collections.Generic; namespace ConsoleApp4{ class Program { static void Main(string[] args) { //第一步初始化 Mapp
阅读全文