-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore attribute on Inherited list not working #656
Ignore attribute on Inherited list not working #656
Comments
I updated my project recently and have also encountered this issue! Can we tag this as a bug? |
See #549 |
This is still happening running 1.4.118 (latest release) and it's been blocking me. I have a reproducible working sample here: https://github.com/andre-ss6/SQLiteIgnoreAttributeBugReport. While trying to debug this, I've noticed that the columns will appear duplicated (if you inspect the |
Same problem. Please fix it |
By manually traversing the object hierarchy, we can ensure all [Ignore] attributes, and attributes the derived from [IgnoreAttribute] are found. Fixes praeclarum#1010 Fixes praeclarum#661 Fixes praeclarum#656
Starting from version 1.3.2, When creating a table for a class that has a List property with an Ignore attribute, the error 'Don't know about List' is thrown.
This list originally came from a base class, and is subsequently overridden in the child class in order to furnish it with the [Ignore] attribute (the base class isn't exposed to SQLite reference dependency). My guess is it somehow referred back to the base class's property.
The text was updated successfully, but these errors were encountered: