Adam Ergener
Adam Ergener
Working on one right now that I'll post here. But basically anytime a model calls `bulk_create` I see that behavior.
With the following model: ```python from django.db import models class Thing(models.Model): prop = models.CharField(max_length=64) ``` Execute the following below from the django shell: ``` >>> from app.models import * >>>...
I also have an example setup here https://github.com/aergener/django-mssql-setup-example It uses docker so as long as you have Docker installed, you'll be able to launch the exact same setup. There's also...