Your question has been submitted and is awaiting moderation.
Thank you for reporting this content, moderators have been notified of your submission.
I've created a class object called Group referencing PetaPoco. specifying the PrimaryKey and TableName like below
using PetaPoco;
[PrimaryKey("ID")]
[TableName("rGroups")]
public class Group
{
when i go to use this object it throws error "A critical error has occurred. Invalid object name 'rGroupss'."
for some reason it's adding an extra 's'. if i modify the table name to "rGroup" all works because than it loads as "rGroups".
Any thoughts on this. I'm using 07.01.02
Thanks