Navigation property at nopCommerce4.5

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
1 year ago
Do the navigation properties are completely remove from nopCommerce4.5 ?
1 year ago
Navigation properties were removed in v4.3
1 year ago
So if I need a child table then keep the Id of the child table to the parent table and join that table with the parent table?
1 year ago
Yes for example Customer Table has

        /// <summary>
        /// Gets or sets the billing address identifier
        /// </summary>
        public int? BillingAddressId { get; set; }

        /// <summary>
        /// Gets or sets the shipping address identifier
        /// </summary>
        public int? ShippingAddressId { get; set; }

Which is the Id's for the Addresses stored in Address Table
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.