Skip to content

Instantly share code, notes, and snippets.

@minibugdev
Created November 1, 2016 04:57
Show Gist options
  • Save minibugdev/9f7032e73355cb5db23cce45dc657485 to your computer and use it in GitHub Desktop.
Save minibugdev/9f7032e73355cb5db23cce45dc657485 to your computer and use it in GitHub Desktop.
private fun findInRealm(realm: Realm, name: String): WeatherRealm? {
return realm.where(WeatherRealm::class.java)
.equalTo(FIELD_CITY_NAME, name)
.findFirst()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment