java - Table-Valued Parameter with JPA2.1 and Hibernate, Sql Server -


is there way of using table-valued parameter hibernate ?

https://docs.microsoft.com/en-us/sql/connect/jdbc/using-table-valued-parameters#passing-a-table-valued-parameter-as-a-resultset-object

i'm trying pass table set store procedure, can't pass in such way:

@namedstoredprocedurequery(     name = "deletedocfromfavorites",      procedurename = "sp_del",      parameters = {              @storedprocedureparameter(name = "uid", type = mycustomclass.class, mode = parametermode.in),      }) 

any idea how achieve ?


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -