nosql - Save data to Redis database -


    public class book     {         public long id { get; set; }         public string isbn { get; set; }         public string title { get; set; }         public bookpublishers publishers{ get; set; }     }      public class bookpublishers     {         public icollection<publisher> publisher = new list<publisher>();          public icollection<publisher> publisher()         {             return this.publisher;         }     }      public class publisher     {         public string name { get; set; }         public string phone { get; set; }         public string address { get; set; }     } 

i saved book redis. when read it, publishers property have no value. (count = 0), other have.

i chage property publisher : public icollection<publisher> publishers { get; set; } worked. can me. read question.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -