You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SqlFu is not (and will never be) an ORM. It uses POCOs as data source/destination. The attributes are used for table creation and by some helpers. That's it. If you want 'real' mapping, you should use an ORM like EF.
Sorry for the noob question, came across SqlFu and like the look of it so am experimenting.
I have 2 tables:
User
Address
The user table has a foreign key of PostalAddressId.
My classes are:
When I attempt to save the user record using:
I get the following exception:
Additional information: Invalid column name 'PostalAddress'.
What is your best practice suggestion for dealing with this sort of mapping?
Thanks in advance for any guidance.
The text was updated successfully, but these errors were encountered: