我在SQL2008
数据库中有以下表格:
住宿
code varchar(18)
name varchar(80)
此表包含更多列,但为了简单起见,我已将其删除。
属性
code int
name varchar(50)
AccommodationAttributes
AccommodationCode varchar(18)
AttributeCode int
正如您所知,AccommodationAttributes描述了住宿和属性之间的多对多关系。
我首先使用数据库创建了我的模型(EF5),并创建了两个与导航属性链接的类。
这一切似乎都是正确的。
我想要做的是在db中添加值,但是虽然我能够添加Accommodations和Attributes,但我似乎无法在AccommodationAttributes表中添加相应的值。
我正在读取XML文件。
修改
以下是我正在使用的代码:
public static void UpdateAccommodation(string file)
{
InterHomeEntities ih = new InterHomeEntities();
Stopwatch sw = new Stopwatch();
ih.Configuration.AutoDetectChangesEnabled = false;
ih.Configuration.ValidateOnSaveEnabled = false;
ih.Configuration.LazyLoadingEnabled = false;
XElement xe = XElement.Load(file);
DateTime DayToProcess = DateTime.Now.AddDays(Properties.Settings.Default.InterHome_DaysToProcess);
var Attributes = xe.XPathSelectElements("//attribute").Select(x => x.Value).Distinct();
foreach (var attribute in Attributes)
{
Attribute at = ih.Attributes.Where(x => x.name == attribute).SingleOrDefault();
bool newEntry = at == null ? true : false;
at = newEntry ? new Attribute { name = attribute } : at;
ih.Attributes.Attach(at);
ih.Entry(at).State = newEntry ? System.Data.EntityState.Added : System.Data.EntityState.Modified;
ih.SaveChanges();
}
var Accommodations = from c in xe.Elements("accommodation") select c;
int AccomodationCount = Accommodations.Count();
int AccomodationIndex = 0;
foreach (var accommodation in Accommodations)
{
AccomodationIndex++;
var AccCode = accommodation.Element("code").Value;
try
{
Accommodation a = ih.Accommodations.Where(x=>x.code == AccCode).SingleOrDefault();
bool newAccommodation = a == null ? true : false;
a = !newAccommodation ? a :
new Accommodation
{
code = accommodation.Element("code") == null ? null : accommodation.Element("code").Value,
name = accommodation.Element("name") == null ? null : accommodation.Element("name").Value,
country = accommodation.Element("country") == null ? null : accommodation.Element("country").Value,
region = accommodation.Element("region") == null ? null : accommodation.Element("region").Value,
place = accommodation.Element("place") == null ? null : accommodation.Element("place").Value,
zip = accommodation.Element("zip") == null ? null : accommodation.Element("zip").Value,
type = accommodation.Element("type") == null ? null : accommodation.Element("type").Value,
quality = accommodation.Element("quality") == null ? (byte?)null : Convert.ToByte(accommodation.Element("quality").Value),
details = accommodation.Element("details") == null ? null : accommodation.Element("details").Value,
brand = accommodation.Element("brand") == null ? null : accommodation.Element("brand").Value,
pax = accommodation.Element("pax") == null ? (double?)null : Convert.ToDouble(accommodation.Element("pax").Value),
sqm = accommodation.Element("sqm") == null ? (double?)null : Convert.ToDouble(accommodation.Element("sqm").Value),
floor = accommodation.Element("floor") == null ? (double?)null : Convert.ToDouble(accommodation.Element("floor").Value),
rooms = accommodation.Element("rooms") == null ? (double?)null : Convert.ToDouble(accommodation.Element("rooms").Value),
bedrooms = accommodation.Element("bedrooms") == null ? (double?)null : Convert.ToDouble(accommodation.Element("bedrooms").Value),
toilets = accommodation.Element("toilets") == null ? (double?)null : Convert.ToDouble(accommodation.Element("toilets").Value),
bathrooms = accommodation.Element("bathrooms") == null ? (double?)null : Convert.ToDouble(accommodation.Element("bathrooms").Value),
lat = accommodation.Element("geodata") == null || accommodation.Element("geodata").Element("lat") == null ? null : accommodation.Element("geodata").Element("lat").Value,
lng = accommodation.Element("geodata") == null || accommodation.Element("geodata").Element("lng") == null ? null : accommodation.Element("geodata").Element("lng").Value,
LastUpdated = DateTime.Now
};
foreach (var attribute in accommodation.Elements("attributes").Elements("attribute").Select(x=>x.Value))
{
Attribute at = ih.Attributes.Where(x => x.name == attribute).SingleOrDefault();
a.Attributes.Add(at);
}
if (newAccommodation)
{
ih.Accommodations.Add(a);
}
else
{
ih.Entry(ih.Accommodations.Where(x => x.code == a.code).SingleOrDefault()).CurrentValues.SetValues(a);
ih.Entry(ih.Accommodations.Where(x => x.code == a.code).SingleOrDefault()).State = System.Data.EntityState.Modified;
}
ih.SaveChanges();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
ih.SaveChanges();
}
运行此代码后,我在SQL中运行以下命令:
select COUNT(*) from Accommodations
select COUNT(*)from Attributes
select COUNT(*)from AccommodationAttributes
但是虽然我在两个表中看到了条目,但链接表有0行。
我尝试了其他变体,例如将对象附加到上下文,或隐式指定它是修改过的对象。
到此代码运行时,我确信属性已经插入到数据库中,但是“住宿”是“插入”或“更新”。
更新
经过进一步调查后,它似乎在我添加新的住宿时起作用,但是当住宿已经在数据库中并且我只是添加新属性时它失败了。在我的开发过程中,我首先添加了Accommodation,在后面的开发步骤中,我创建了导入属性的过程。因此,当住宿和属性都已经在数据库中时,我需要找到一种更新关系的方法。 我渴望听到你的想法,
Giannis
答案 0 :(得分:0)
确保您设置以下内容:
在表格中,住宿PK是代码。
在表格中,Attrrrribute PK是代码。
在表中,AccomodationAtrribute PK是AccomodationCode + AttributeCode。
在表AccomodationAttribute中,将AccomondationCode的foriegn键设置为表Accomodation中的colum代码。
在表AccomodationAttribute中,将AttributeCode的foriegn键设置为表Attribute中的colum代码。
对于要填充的链接表,您需要在代码中将属性实例链接到住宿,反之亦然。像是:
accomodation.Attrbutes.Add(attribute);