Is there any way to map a class to a sqlite table?
For instance, if I have a Person class like:
public class Person
{
public string Name {get; set;}
public string Surname {get; set;}
public string BirthDate {get; set;}
}
Is there any way to automatically insert any object into a table that shares the same name as the class and the same columns as its attributes? I thought it would be possible going by this question here, but I can't find the exact package that was being used in that case nor if it really does what I would want.