Hi,
I try to use DBLinq 0.18 with MySQL in my project but I have this
problem:
I use this table
CREATE TABLE engine
(
  id            serial,
  CONSTRAINT engine_pk PRIMARY KEY(id)
);

CREATE TABLE report
(
  id            serial,
  engine_id     BIGINT UNSIGNED NOT NULL,
  CONSTRAINT report_pk PRIMARY KEY(id),
  CONSTRAINT engine_fk FOREIGN KEY(engine_id) REFERENCES engine (id)
);

INSERT INTO entity VALUES (1);
INSERT INTO report VALUES (100, 1);

When I use generated code to find entity.Id = 1 the result EntitySet
Engine.Report is fill correctly.
When I try to find report.Id = 100 the EntityRef Report.Engine is set
to null. Why?

Marco
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"DbLinq" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to