首先是一些背景。这是我创建的SQLite脚本:
create table Person(
ID integer not null primary key autoincrement,
Name text not null
);
create table Department(
ID integer not null primary key autoincrement,
Name text not null,
Leader integer not null references Person(ID)
);
它生成以下实体框架模型:
在这里,我正在尝试创建一个简单的应用程序,这样我就可以学习如何使用SQLite,这样我就可以将新的Person保存到数据库中,还可以保存一个新的部门。一个部门只能有一个领导者,一个人可以成为许多部门的领导者。
现在我正专注于创建一个新部门。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace SQLite_Testing_Grounds
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
LoadUsersToComboBox();
}
private void LoadUsersToComboBox()
{
throw new NotImplementedException();
}
private void button2_Click(object sender, EventArgs e)
{
CreateNewPerson();
}
private void CreateNewPerson()
{
if (textBox2.Text != String.Empty)
{
ScansEntities1 db = new ScansEntities1();
Person user = new Person()
{
Name = textBox1.Text
};
db.AddToPeople(user);
db.SaveChanges();
}
}
private void button1_Click(object sender, EventArgs e)
{
CreateNewDepartment();
}
private void CreateNewDepartment()
{
if ((textBox1.Text != String.Empty) && (comboBox1.SelectedIndex >= 0))
{
ScansEntities1 db = new ScansEntities1();
Department department = new Department()
{
Name = textBox1.Text,
//Then what goes here? :/
};
}
throw new NotImplementedException();
}
}
}
如何使用ComboBox保存所选“人物”的ID?
修改<!/强>
按照John H.的建议,我的Department类(由EF生成)不包含Leader的定义(正如我所期望的那样,如果我使用的是MS SQL)。
以下是所做的所拥有的屏幕截图。再次感谢您的大力帮助。
答案 0 :(得分:3)
你需要将这个人存根并将其附加到上下文中,使用该存根人作为你部门对象中LEADER的参考。
Stub Entities Reference http://blogs.msdn.com/b/alexj/archive/2009/06/19/tip-26-how-to-avoid-database-queries-using-stub-entities.aspx
private void CreateNewDepartment()
{
if ((textBox1.Text != String.Empty) && (comboBox1.SelectedIndex >= 0))
{
ScansEntities1 db = new ScansEntities1();
Person person = new Person() {Id = /*SomeId*/};
db.AttachTo("Person", person);
Department department = new Department()
{
Name = textBox1.Text,
Person = person
};
db.AddToDepartment(department);
db.SaveChanges();
}
}