I have a database, which has two tables.

The Order table, and the Item table. The relationship is m:1.

I am using LLBLGen as the mapping tool to generate the source file.

I can see that the ItemID from the Item table is displayed in the Order entity from the designer of LLBLGen, which is correct.

However, when I try to call this generated source codes, the ItemID is not listed as a property of my Order class. Actually all my foreign key is gone.

Could anyone teach me how to generate the foreign key as a property?

Thanks a lot

link|improve this question

62% accept rate
feedback

1 Answer

It's a setting. Go to: Project properties -> Output Setting values Tab -> EmitForeignKeyFields, check the checkbox. Ok -> regenerate code.

It's false by default.

Ps: if you post your question on our own support forums, you might get answers more quickly ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.