示例#1
0
 public async Task InsertTest(Test test)
 {
     await _context.AddAsync(test);
 }
示例#2
0
 public async Task InsertTest(TestDetail testDetail)
 {
     testDetail.MyProperty = checkFitness(testDetail.Distance);
     await _context.AddAsync(testDetail);
 }