Is there any requirement for model class in SQLite database?
问题 I am writing code using LINQ to SQLite on UWP. To my understanding, models are templates of rows of the tables in the database. The documentations about SQLite barely mention the restrictions of the models, or how the models are converted into rows of tables. The sample codes usually provide only simple cases with primary types. My questions are: Is there any difference between a database model class and a normal class. I find at least in this example(which is a nice one, by the way), The