Replies: 1 comment 5 replies
-
AFAIK OC are set on top of YesSQL, so how you achieve what you did? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
YesSql currently doesn't support complex expression query, and have bugs sebastienros/yessql#262
The Document & Index table design is a cool idea, but sometime it's unnecessary,
NHibernate
,Entity Framework
are relatively more mature, reliable, and powerful.So we can integrate other ORMs in Orchard Core by ourselves, bypass YesSql, and even break away from Orchard Core's database structure (Document & Index table design)
And, add some Mapping for
ContentItemIndex
or otherXxxxxIndex
, it is also feasible to use NHibernate to do the ContentItem + Index query.I have done this in actual projects and it works well.
Beta Was this translation helpful? Give feedback.
All reactions