1

私は次のようなクラスを作りました:

public class Video
{
    public Guid VideoID { get; set; }
    public VideoCategory VideoCategory { get; set; }
    public int SortIndex { get; set; }
    public string Title { get; set; }
    public string Body { get; set; }
    public string Author { get; set; }
    public string Filename { get; set; }

    public new void Add()
    {
        this.VideoID = Guid.NewGuid();
        DB.Repository.Add(this);
    }
}

そして別のような

public class VideoCategory
{
    public Guid VideoCategoryID { get; set; }
    public string Title { get; set; }

    public new void Add()
    {
        this.VideoCategoryID = Guid.NewGuid();
        DB.Repository.Add(this);
    }
}

次に、次のようなコードがあります。

        VideoCategory VideoCategory = new VideoCategory();
        VideoCategory.Title = "TestTitle";
        VideoCategory.Add();

        Video Video = new Video();
        Video.VideoCategory = VideoCategory;
        Video.SortIndex = 1;
        Video.Title = "TestTitle";
        Video.Body = "TestBody";
        Video.Author = "TestAuthor";
        Video.Filename = "TestFile.flv";
        Video.Add();

VideoCategory がデータベースに保存されないため、明らかに何かが不足しています。1 対多の関係を維持するには、他に何をする必要がありますか?

4

3 に答える 3

0

SimpleRepositoryで外部キーを自分でマンガ化する方法を示す便利なリンクがあります-

subsonic-3-simplerepository

自分で試したことはありませんが、実際に機能するようです。

Fluent Nhibernateは、この外部キー管理を自動的に実行しますが、はるかに複雑です。

PSこれが役に立った場合は、投票してください。

于 2009-12-19T01:14:02.250 に答える
0

あなたは何も見逃していません。Simplerepository は、そのままでは 1 対多をサポートしていません。

于 2009-12-19T00:55:16.327 に答える
0

おそらく次のようにすることができます。おそらく整理したいと思うでしょうが、外部キーの値が確実に入力されるようにします。

public class Video
{
    protected VideoCategory videoCategory;
    public Guid ID { get; set; }
    public VideoCategory VideoCategory 
    {
        get { return videoCategory; }
        set
        {
            videoCategory = value;
            VideoCategoryId = value.ID;
        }
    }
    public Guid VideoCategoryId { get; set; }
    public int SortIndex { get; set; }
    public string Title { get; set; }
    public string Body { get; set; }
    public string Author { get; set; }
    public string Filename { get; set; }
}

public class VideoCategory
{
    public Guid ID { get; set; }
    public string Title { get; set; }
}

SimpleRepository repo = new SimpleRepository(SimpleRepositoryOptions.RunMigrations);

VideoCategory videoCategory = new VideoCategory();
videoCategory.ID = Guid.NewGuid();
videoCategory.Title = "TestTitle";
repo.Add<VideoCategory>(videoCategory);

Video video = new Video();
video.ID = Guid.NewGuid();
video.VideoCategory = videoCategory;
video.SortIndex = 1;
video.Title = "TestTitle";
video.Body = "TestBody";
video.Author = "TestAuthor";
video.Filename = "TestFile.flv";
repo.Add<Video>(video);
于 2009-12-20T16:51:51.053 に答える