OrmLite Implementation

Can you guys add an [AutoIncrement] attribute to the Id Property on the RequestLogEntry class so that an OrmLite implementation of the request logger can work with the Id column without managing the Id explicitly?

Done in this commit which is now available from v4.5.13 on MyGet.

Note you can modify the field metadata properties from classes you don’t own with:

var modelDef = typeof(RequestLogEntry).GetModelMetadata();
modelDef.PrimaryKey.AutoIncrement = true;

thanks for the speedy turnaround!