Hi
The Database is = MSACCESS.
The MyGeneration version is = 1.2.0.6.
The EntitySpaces version is = EntitySpaces 2007 Beta v0.0415.
This is the table schema =
CREATE TABLE [Setup]
(
[Libro] VARCHAR (10) NOT NULL,
[Seccion] VARCHAR (10) NOT NULL,
[Almacen] VARCHAR (10) NOT NULL,
[Linea] INT,
[UltLinea] INT,
[Operario] VARCHAR (20)
);
ALTER TABLE [Setup]
ADD
CONSTRAINT [Primary Key] PRIMARY KEY ([Libro] ,[Seccion] ,[Almacen]);
El problem is the order listed =
This is not correct =
In MyMeta Brower the fields = Setup - PrimaryKeys = (Almacen,Seccion,Libro).
In Method = public virtual bool LoadByPrimaryKey(System.String almacen, System.String seccion, System.String libro) 
It should be =
In MyMeta Brower the fields = Setup - PrimaryKeys = (Libro,Seccion,Almacen).
public virtual bool LoadByPrimaryKey(System.String libro, System.String seccion,System.String almacen,)