When col not exist ormlite set prop'name

`
public class POIsubmit
{

    public string SSJG { get; set; }
  
    public string QTW { get; set; }
   
    public string SLDD { get; set; }

   
    public string XZQH { get; set; }

    public string ZYWYM { get; set; }
}

poIsubmits = db.Select<POIsubmit>(); SELECT "SSJG", "QTW", "SLDD", "XZQH", "ZYWYM" FROM "POIsubmit" //generate

I use ormlite 4.5.12 , when the table POIsubmit has no QTW col ( real col name is QTDW) it don’t throw any exceptions just set POIsubmit.QTW="QTW" , is it a bug or I get something error?
thank you

OrmLite tries to populate as much data as it can without error, if you want it to OrmLite to be more strict turn on:

OrmLiteConfig.ThrowOnError = true;

thanks for your quick reply