Add performance test project

This commit is contained in:
sunkaixuan
2017-09-21 13:52:52 +08:00
parent 0620c3fdbb
commit b7e919999c
12 changed files with 378 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PerformanceTest
{
[Dapper.Contrib.Extensions.Table("Test")]
public class Test
{
[Dapper.Contrib.Extensions.Key]
public int Id { get; set; }
public byte? F_Byte { get; set; }
public Int16? F_Int16 { get; set; }
public int? F_Int32 { get; set; }
public long? F_Int64 { get; set; }
public double? F_Double { get; set; }
public float? F_Float { get; set; }
public decimal? F_Decimal { get; set; }
public bool? F_Bool { get; set; }
public DateTime? F_DateTime { get; set; }
public Guid? F_Guid { get; set; }
public string F_String { get; set; }
}
}