What limitations are there on data types used in a class that will be used by SQLite-net to represent a table? Specifically, can I use this:
public List<string> CoconutWaterBrands { get; set; }
...or will I need this:
public string[] CoconutWaterBrands { get; set; }
...or something else altogether?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…