I wan't to create instances of the following class, and save them in a Microsoft Access DataBase.
public class Foo
{
Func<bool> DelegateToSave { get; set; }
string Name { get; set; }
string FullName { get; set; }
int Priority { get; set; }
Foo Parent { get; set; }
}
How can a delegate be saved in Microsoft Access?