コード例 #1
0
 /// <summary>Private CTor for deserialization</summary>
 /// <param name="info"></param>
 /// <param name="context"></param>
 protected SupplierEntity(SerializationInfo info, StreamingContext context) : base(info, context)
 {
     _products               = (Northwind.SSDAL.CollectionClasses.ProductCollection)info.GetValue("_products", typeof(Northwind.SSDAL.CollectionClasses.ProductCollection));
     _alwaysFetchProducts    = info.GetBoolean("_alwaysFetchProducts");
     _alreadyFetchedProducts = info.GetBoolean("_alreadyFetchedProducts");
     this.FixupDeserialization(FieldInfoProviderSingleton.GetInstance(), PersistenceInfoProviderSingleton.GetInstance());
     // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
     // __LLBLGENPRO_USER_CODE_REGION_END
 }
コード例 #2
0
        /// <summary> Initializes the class members</summary>
        private void InitClassMembers()
        {
            _products = new Northwind.SSDAL.CollectionClasses.ProductCollection();
            _products.SetContainingEntityInfo(this, "Supplier");
            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }