Say I have an entity Customer which has relationship with city, order etc. Now when I am adding a customer object, should I assign customer.cityid, or customer.city? From the form I get cityid from a dropdown, so to assign the city object, I will have to make a query using id selected.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you need the City object populated, then get the City and set If you don't need the City object and are just saving and moving on, setting In either case, the next time the object loads, City will be available. (Both methods save the same City column in the database unless you have something strange/non-default setup). |
|||
|
|