Posts by Fabio Miranda Zanela • 26 points
3 posts
-
0
votes2
answers29
viewsA: Recent version of Django with SQL Server
In my case, in order to be able to use SQL Server I used Django in version 3.0 and the library Django-mssql-backend. In your case, if you choose to use the library Django-mssql, according to the…
-
1
votes1
answer63
viewsA: Query returns subclasses in Spring
Go to your Omain class and put the @Jsonignore annotation in the attribute that you don’t want to return when you do the search. If it doesn’t work instead of putting in the attribute put in the get…
-
0
votes1
answer41
viewsA: Insert using Many to Many Annotation does not work
If the Team type objects are already in the database, you should add them to the News object list and only after that you can add them to the database, for example: news.getTeams().addAll(lista de…