2
エンティティをルックアップテーブルである別のエンティティにマッピングするのが困難です。C#ルックアップテーブルへのNhibernateマッピング
create table Sources
(
SourceId identity(1,1) primary key not null,
Name [nvarchar](255) NULL,
)
create table Candidates
(
CandidateId int identity(1,1) primary key not null,
SourceId int references Sources(SourceId) NULL,
)
そしてEnitites:
public class Candidate : Entity
{
public virtual Source Source { get; set; }
}
public class Source : Entity
{
public virtual string Name { get; set; }
}
私はエラーになっています:
An association from the table Candidates refers to an unmapped class: Entities.Source
をしかし、私はマッピングについて移動する方法がわからない午前: