Skip to content

Instantly share code, notes, and snippets.

@fevziomurtekin
Last active August 19, 2020 09:04
Show Gist options
  • Save fevziomurtekin/f9824316e0c6ddde475d803663d2409e to your computer and use it in GitHub Desktop.
Save fevziomurtekin/f9824316e0c6ddde475d803663d2409e to your computer and use it in GitHub Desktop.
package com.fevziomurtekin.sample.repository
import com.fevziomurtekin.sample.data.Covid
import org.springframework.data.mongodb.repository.MongoRepository
import org.springframework.stereotype.Repository
@Repository
interface CovidRepository : MongoRepository<Covid,String> {
fun findByDateLike(dates:String):Covid
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment