From e4aaf49f1d32438783baf280d0a56ff996c928b2 Mon Sep 17 00:00:00 2001 From: Joe Greer Date: Wed, 20 Apr 2022 16:40:42 -0500 Subject: [PATCH] Update IndexedAttribute to allow multiple indexes on a column (based off issue #122) --- src/SQLite.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SQLite.cs b/src/SQLite.cs index ee172b39..ba5134e2 100644 --- a/src/SQLite.cs +++ b/src/SQLite.cs @@ -2349,7 +2349,7 @@ public class AutoIncrementAttribute : Attribute { } - [AttributeUsage (AttributeTargets.Property)] + [AttributeUsage (AttributeTargets.Property, AllowMultiple = true)] public class IndexedAttribute : Attribute { public string Name { get; set; }