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.
1 parent 4ee4f29 commit 7124243Copy full SHA for 7124243
src/UmbracoExamine/DataServices/UmbracoContentService.cs
@@ -123,8 +123,8 @@ public IEnumerable<string> GetAllUserPropertyNames()
123
{
124
try
125
126
- var result = _applicationContext.DatabaseContext.Database.Fetch<PropertyAliasDto>("select distinct alias from cmsPropertyType order by alias");
127
- return result.Select(r => r.Alias).ToList();
+ var result = _applicationContext.DatabaseContext.Database.Fetch<string>("select distinct alias from cmsPropertyType order by alias");
+ return result;
128
}
129
catch (Exception ex)
130
0 commit comments