<p dir="ltr">Sorry, I should have been more clear. I believe you only need one save() before you call add() on the m2m field. I don't think you need to call it again afterwards.</p>
<p dir="ltr">And yeah, you can call save with commit=False to get an object instance but I don't believe you will have a primary key until it's committed (saved). </p>
<p dir="ltr">I could be wrong though :) my brain has been all over the place coding-wise lately.</p>
<div class="gmail_quote">On Oct 24, 2012 11:06 AM,  <<a href="mailto:jep200404@columbus.rr.com">jep200404@columbus.rr.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Wed, 24 Oct 2012 10:37:30 -0400, Kurtis Mullins <<a href="mailto:kurtis.mullins@gmail.com">kurtis.mullins@gmail.com</a>> wrote:<br>
<br>
> You should only need 1 save. The .add() doesn't require a save if memory<br>
> serves me correctly.<br>
<br>
I am dealing with a newly created object/row that does not yet<br>
have a primary key (id) until the first save.<br>
How were you getting a value for the primary key for the .add()<br>
to use? Were you using an object/row that already existed and so<br>
had already been saved earlier?<br>
<br>
On Wed, 24 Oct 2012 10:29:03 -0400, <a href="mailto:jep200404@columbus.rr.com">jep200404@columbus.rr.com</a> wrote:<br>
<br>
> by doing a .save() to flesh out the primary key value,<br>
> then doing the .add() for the ManyToManyField,<br>
> then doing another .save().<br>
<br>
I might have discovered a solution. I see something now that<br>
I did not see when I first looked at the code[1].<br>
Add commit=False to the first save.<br>
<br>
[1] busi = business.save(commit=False)<br>
    from the last answer of<br>
    <a href="http://stackoverflow.com/questions/6090859/django-instance-needs-to-have-a-primary-key-value-before-a-many-to-many-relatio" target="_blank">http://stackoverflow.com/questions/6090859/django-instance-needs-to-have-a-primary-key-value-before-a-many-to-many-relatio</a><br>

<br>
_______________________________________________<br>
CentralOH mailing list<br>
<a href="mailto:CentralOH@python.org">CentralOH@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/centraloh" target="_blank">http://mail.python.org/mailman/listinfo/centraloh</a><br>
</blockquote></div>