java - Table-Valued Parameter with JPA2.1 and Hibernate, Sql Server -
is there way of using table-valued parameter hibernate ?
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
Post a Comment