diff --git a/docs/8.0/ayanova/docs/form-ay-data-list-view.md b/docs/8.0/ayanova/docs/form-ay-data-list-view.md index 88ca34a9..71f3151d 100644 --- a/docs/8.0/ayanova/docs/form-ay-data-list-view.md +++ b/docs/8.0/ayanova/docs/form-ay-data-list-view.md @@ -1,3 +1,7 @@ # Sort and filter FORM HELP Placeholder This is a placeholder page for sections that are not written yet + +NOTE: Make sure to mention that filters are CASE SENSITIVE +Postgres does case sensitive searches and that's what we're going to stick with. +v7 seemed to allow case insensitive with firebird at least but that's not happening now diff --git a/server/AyaNova/models/DataListView.cs b/server/AyaNova/models/DataListView.cs index e5c5638d..2ebc08e4 100644 --- a/server/AyaNova/models/DataListView.cs +++ b/server/AyaNova/models/DataListView.cs @@ -10,7 +10,7 @@ namespace AyaNova.Models public uint ConcurrencyToken { get; set; } [Required] - public long UserId { get; set; } + public long UserId { get; set; }//only relevant if non-public for fetching either in picklist or single (public true OR userid matches) [Required, MaxLength(255)] public string Name { get; set; }//max 255 characters ascii set [Required]