ActiveRecord mape:
[ActiveRecord("JobTitle",Schema="public")] 
public class JobTitle :ActiveRecordValidationBase<JobTitle>
{
    [PrimaryKey(Column = "Id")]
    public virtual int Id { get; set; }
    [Property(Column = "Description")]
    public virtual string Description { get; set; }
    [Property(Column = "Title", NotNull = true)]
    public virtual string Title { get; set; }
}

DB connection:

DB config:
 public class DbConfig
{
    public static void Configure()
    {
        var connectionString=ConfigurationManager.ConnectionStrings["PgConnection"].ConnectionString; 
        var source = ActiveRecordSectionHandler.Build(DatabaseType.PostgreSQL82,connectionString);
        ActiveRecordStarter.Initialize(source, typeof(JobTitle)); 
    }
}
And init on app started:

Test for example the Table:
    //
    // GET: /Home/
    public string Index()
    {
        var jobTitle= JobTitle.TryFind(1);
        return jobTitle.Title;
    }
Error getting on Active record:

Trace is :

I understand that the request is еrror.Because incorrectly sending to pg sql query. And this simple query for my "JobTitle" table:
  select * from public.jobtitle => Castle Active Record
  select * from public."jobtitle" => Pg 
How can I solve this casting problem?