I am trying to change EF1 for EF4.1 code first in an application where the schema cannot be changed because it is used in SQL Server Replication. The schema is dreadfully poor and in many places describes relationships completely back to front.
What I am trying to do is create a one to one relationship between two classes, but the database schema erroneously maintains the data as a one to many.
public class ClassA
{
public ClassB
{
get;
set;
}
}
Unfortunately the table ClassB in the database has reference to ClassAId rather than ClassA having a ClassBId as shown here:
CREATE TABLE [dbo].[ClassA]
[Id] [bigint] IDENTITY
CREATE TABLE [dbo].[ClassB]
[Id] [bigint] IDENTITY
[ClassAId] [bigint]
How to I set up my mapping file that inherits from EntityTypeConfiguration to force this relationship.
public class ClassAMapping : EntityTypeConfiguration<ClassA>
{
public ClassA()
{
HasKey(f => f.Id);
// what happens here to force a one to one????
}
}