Can CSLA.NET use Java Hibernate datasource? #2414
Unanswered
aprokopyev
asked this question in
Questions
Replies: 1 comment
-
I think the challenge here is that the Java ORM will need to run in a separate process from the .NET code. So I would guess that you need to create a service API around your Java ORM, exposing services than can be invoked from your .NET code. CSLA itself won't really care about this. Your data portal operation methods (create,fetch,update,etc.) will invoke those services instead of talking directly to a database. That is a valid implementation. |
Beta Was this translation helpful? Give feedback.
0 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.
-
Hello Rockford,
I like nHibernate ORM very much, but unfortunately it is not as feature rich as original Hibernate on JVM.
While I prefer to do all GUI works on DotNet using DevExpress components and your CSLA.net I am thinking about making data access layer on JVM using true Java Hibernate OGM extensions may be using modern languages for JVM like Kotlin or Scala.
Please let me know, what is the best way to connect CSLA.NET data portal to Java Hibernate classes for DAL?
May be using
Remoting like gRPC ?
Or some framework bridge like https://libraries.io/nuget/JCOBridge ?
Or may be even RemObjects Hydra or Mercury:
https://hydra.remobjects.com/hydra/default.aspx
https://www.elementscompiler.com/elements/mercury/
It seems they can mix DotNet and Java in the same project.
In result I need to get something like this:
DevExpress GUI -> CSLA.NET on .NET v5+ -> JVM DAL using Hibernate OGM -> modern noSQL DBMS
Beta Was this translation helpful? Give feedback.
All reactions