app开发者平台在数字化时代的重要性与发展趋势解析
1059
2022-10-14
srom- scala的orm框架
scala的orm框架,相比其他orm更为简洁
// Declare a model:case class Artist( name : String, genres : Set[Genre] )case class Genre( name : String )// Initialize SORM, automatically generating schema:import sorm._object Db extends Instance( entities = Set( Entity[Artist](), Entity[Genre]() ), url = "jdbc:h2:mem:test")// Store values in the db:val metal = Db.save( Genre("Metal") )val rock = Db.save( Genre("Rock") )Db.save( Artist("Metallica", Set(metal, rock) ) )Db.save( Artist("Dire Straits", Set(rock) ) )// Retrieve values from the db:// Option[Artist with Persisted]:val metallica = Db.query[Artist].whereEqual("name", "Metallica").fetchOne() // Stream[Artist with Persisted]:val rockArtists = Db.query[Artist].whereEqual("genres.item.name", "Rock").fetch()
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~