MongoDB
 sql >> डेटाबेस >  >> NoSQL >> MongoDB

मोंगोडब का उपयोग करके किसी इकाई में स्थान को कैसे परिभाषित करें?

मुझे लगता है कि स्थान की संरचना नीचे दिए गए कोड के समान होगी।

स्रोत 1 स्रोत 2

enum GeoJSONPoint {
  Point = "Point"
}

enum Careers {
  WebDevelopment = 'Web Development',
  MobileDevelopment = 'Mobile Development',
  UIUX = 'UI/UX',
  DataScience = 'Data Science',
  Business = 'Business',
  Other = 'Other'
}

@Entity('location')
export class LocationEntity extends BaseEntity {

  @Column({
    type: "enum",
    enum: GeoJSONPoint
  })
  type: GeoJSONPoint;

  @Column({type:'int'})
  coordinates: number;

  @Column({type:'text'})
  formattedAddress: string;

  @Column({type:'text'})
  street: string;

  @Column({type:'text'})
  city: string;

  @Column({type:'text'})
  state: string;

  @Column({type:'text'})
  zipcode: string;

  @Column({type:'text'})
  country: string;

  @Column({type:'simple-array'})
  careers: Careers[];
}



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. माता-पिता के रिफ्रेंसिंग के साथ नेवला में एक से कई संबंधों को कैसे पॉप्युलेट करें?

  2. एकाधिक मानदंड द्वारा नेस्टेड ऐरे से ऑब्जेक्ट निकालें

  3. MongoDB के साथ यूनिट परीक्षण

  4. मोंगोडीबी सी # में समूह एकत्रीकरण को फिर से खोलें

  5. AngularJs और MongoDB/Mongoose का उपयोग करना