using PetaPoco;
using System;
namespace Bootstrap.DataAccess
{
internal class BootstrapDataAccessConventionMapper : ConventionMapper
{
///
///
///
///
///
public override TableInfo GetTableInfo(Type pocoType)
{
var ti = base.GetTableInfo(pocoType);
ti.AutoIncrement = true;
return ti;
}
}
}