From 4d5167c1dc337a1f0938c908b0fbe6184b16dd05 Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Wed, 2 Aug 2017 18:24:19 -0700 Subject: [PATCH] Add doc comments to CollationAttribute Help with #417 --- src/SQLite.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/SQLite.cs b/src/SQLite.cs index d5faff90..ac87fdbd 100644 --- a/src/SQLite.cs +++ b/src/SQLite.cs @@ -2006,6 +2006,11 @@ public MaxLengthAttribute (int length) } } + /// + /// Select the collating sequence to use on a column. + /// "BINARY", "NOCASE", and "RTRIM" are supported. + /// "BINARY" is the default. + /// [AttributeUsage (AttributeTargets.Property)] public class CollationAttribute : Attribute {