We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcb8a60 + c4b4031 commit 199b8dfCopy full SHA for 199b8df
src/SQLite.cs
@@ -1886,7 +1886,7 @@ from p in ti.DeclaredProperties
1886
1887
var cols = new List<Column> ();
1888
foreach (var p in props) {
1889
- var ignore = p.CustomAttributes.Any(x => x.AttributeType == typeof(IgnoreAttribute));
+ var ignore = p.IsDefined(typeof(IgnoreAttribute),true);
1890
if (p.CanWrite && !ignore) {
1891
cols.Add (new Column (p, createFlags));
1892
}
0 commit comments