You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.Select("cmsTagRelationship.nodeId, cmsPropertyType.Alias, cmsPropertyType.id as propertyTypeId, cmsTags.tag, cmsTags.id as tagId, cmsTags."+SqlSyntaxContext.SqlSyntaxProvider.GetQuotedColumnName("group"))
175
173
.From<TagDto>()
@@ -181,17 +179,21 @@ public IEnumerable<TaggedEntity> GetTaggedEntitiesByTagGroup(TaggableObjectTypes
181
179
.On<PropertyTypeDto,TagRelationshipDto>(left =>left.Id, right =>right.PropertyTypeId)
182
180
.InnerJoin<NodeDto>()
183
181
.On<NodeDto,ContentDto>(left =>left.NodeId, right =>right.NodeId)
.Select("cmsTagRelationship.nodeId, cmsPropertyType.Alias, cmsPropertyType.id as propertyTypeId, cmsTags.tag, cmsTags.id as tagId, cmsTags."+SqlSyntaxContext.SqlSyntaxProvider.GetQuotedColumnName("group"))
197
199
.From<TagDto>()
@@ -203,9 +205,15 @@ public IEnumerable<TaggedEntity> GetTaggedEntitiesByTag(TaggableObjectTypes obje
203
205
.On<PropertyTypeDto,TagRelationshipDto>(left =>left.Id, right =>right.PropertyTypeId)
204
206
.InnerJoin<NodeDto>()
205
207
.On<NodeDto,ContentDto>(left =>left.NodeId, right =>right.NodeId)
0 commit comments