sql >> Databáze >  >> NoSQL >> MongoDB

jak definovat umístění v entitě pomocí mongodb

Myslím, že umístění by mělo podobnou strukturu jako kód níže.

zdroj 1 zdroj 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. Jak může Redis třídit podle dvou různých seřazených sad?

  2. Jak napsat dotaz, abyste získali odlišné hodnoty z kolekce mongodb?

  3. Redis/Jedis - Smazat podle vzoru?

  4. Konfigurace QueryDSL pro Spring Data a MongoDB pomocí Gradle