I am having some difficulty figuring out how to get this module to work. I've read the readme and I believe I have configured everything correctly, but I am not seeing any of the "fused view" data inlcuded on the primary view when I use Node family. Here's an example of what I'm trying to do:

Content Type 1 has:
Field 1A
Field 1B
Field C (the same in both content types)

Content Type 2 has:
Field 2A
Field 2B
Field C

I want a list view that has all the appropriate nodes sorted and selected by the various filters, with all of the fields:
Field 1A
Field 1B
Field 2A
Field 2B
Field C

I created two views, View 1 for Content Type 1 and View 2 for Content Type 2. Both are list views that include the fields I want for that type, e.g.

View 1:
* Node 1
Field 1A
Field 1B
Field C
* Node 2
Field 1A
Field 1B
Field C
etc.

I have a Node family relation where Type 2 is the child of Type 1. So, I set up the following fusion:
primary view: View 2
fused view: View 1
using: nodefamily relation: child - parent

I then look at View 2 and it does not have any of the fields I want from View 1. I tried changing View 1 to include the whole body of the Type 1 nodes, and then View 2 included the body of the Type 2 nodes in addition to the fields from View 2.

I thought maybe the module did not know how to match the nodes based on Field C, so I tried patching nodereference.module with the patch provided and adding a node reference field (Field D) to Content Type 2. As a test, I edited a Type 2 node to reference the appropriate Type 1 node. Then, I deleted the old fusion and added a new one:
primary view: View 2
fused view: View 1
using: node reference: Field D.

This had the effect of removing any nodes that didn't have Field D defined from View 2. Again, not at all what I was trying to do. The fields from View 1 do actually show up now on the nodes listed, but I don't want View 2 to be restricted only to nodes that have a matching Type 1 node.

Any suggestions on how I can fix either issue? Thanks in advance for any assistance you can provide.