Print Page | Close Window

What am I doing wrong?

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce Classic
Forum Discription: For .NET 2.0
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=781
Printed Date: 06-Apr-2025 at 9:43am


Topic: What am I doing wrong?
Posted By: philpastor
Subject: What am I doing wrong?
Date Posted: 22-Apr-2008 at 11:25am
I have the following select query which works fine ...
 
DomainModel.Manager manager = new DomainModel.Manager();
var query = manager.Companies;
foreach (DomainModel.Company comp in query)
{
   textBox1.Text += comp.CompanyName;
}
if (textBox1.Text.Length == 0)
{
   MessageBox.Show("No Companies");
}
 
... but, I cannot create a new record ...
 
DomainModel.Manager manager = new DomainModel.Manager();
DomainModel.Company comp = manager.CreateEntity<DomainModel.Company>();
comp.CompanyName = textBox1.Text;
comp.CompanyId = 1;
List<DomainModel.Company> list = new List<DomainModel.Company>();
list.Add(comp);
 
SaveOptions options = new SaveOptions();
options.ThrowExceptionOnSaveFailure = ThrowExceptionRule.Always;
manager.SaveChanges(list, options);
 
... it runs fine (no errors), but it does not create a new record in the db. So, what am I doing wrong?



Replies:
Posted By: BillG
Date Posted: 22-Apr-2008 at 12:57pm
After creating comp, add it to the PersistenceManager cache
 
comp.AddToManager();
 
 
Bill
 


Posted By: philpastor
Date Posted: 22-Apr-2008 at 1:19pm
Thanks, Bill ... that did it.
 
I would have thought that since I was calling create entity on the manager that it already knew about it :-/
 
Thanks again,
 
Phil



Print Page | Close Window