Hi
Why is this throwing a foreign key violation. I am using self servicing inside VS2K3 with SQL2K...
Dim d As New DepartmentEntity(Guid.NewGuid)
d.Name = "Information Technology"
d.Save()
Dim e As New EmployeeEntity(Guid.NewGuid)
e.LastName = "Hill"
e.FirstName = "Steven"
e.Department = d
e.Save()