21 lines
481 B
C#
21 lines
481 B
C#
using PetaPoco;
|
|
using System;
|
|
|
|
namespace Bootstrap.DataAccess
|
|
{
|
|
internal class BootstrapDataAccessConventionMapper : ConventionMapper
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="pocoType"></param>
|
|
/// <returns></returns>
|
|
public override TableInfo GetTableInfo(Type pocoType)
|
|
{
|
|
var ti = base.GetTableInfo(pocoType);
|
|
ti.AutoIncrement = true;
|
|
return ti;
|
|
}
|
|
}
|
|
}
|