Skip to content

Commit df96ed1

Browse files
authored
Merge pull request praeclarum#1112 from joseph-greer/IndexedAttribute_AllowMultiple
Update IndexedAttribute to allow multiple indexes on a column
2 parents 3a941c7 + e4aaf49 commit df96ed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SQLite.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2447,7 +2447,7 @@ public class AutoIncrementAttribute : Attribute
24472447
{
24482448
}
24492449

2450-
[AttributeUsage (AttributeTargets.Property)]
2450+
[AttributeUsage (AttributeTargets.Property, AllowMultiple = true)]
24512451
public class IndexedAttribute : Attribute
24522452
{
24532453
public string Name { get; set; }

0 commit comments

Comments
 (0)