I have an entity A and a typedview B.
Both have same fields (F1, F2, F3) which I would like to use to join them. Fields are not a key in both tables. I can't map B into an entity because it doesn't have a PK.
So, I'd like something like (plus apply a filter on it)
SELECT A.*, B.* where A.F1 = B.F1 AND A.F2 = B.F2 AND A.F3 = B.F3
Is it even possible without modifying database schema?