我将 Silverlight5 与 MVVM 框架和实体框架一起使用。在我的项目中,我有一个疑问..
我有一个名为“客户”的实体,结构如下..
Customer ocustomer = new Customer();
ocustomer.CustomerName = customername;
ocustomer.CompanyName = company;
ocustomer.AddressLine1 = address1;
ocustomer.AddressLine2 = address2;
ocustomer.City = city;
ocustomer.State = state;
ocustomer.Country = country;
ocustomer.ZipCode = zipcode;
ocustomer.Notes = note;
_context.Customers.Add(ocustomer);
现在我需要将 Customer 值插入到另一个名为 Customer_Entity 的表中
Customer_Entity ocustomerEntity=new Customer_Entity ();
ocustomerEntity.CustomerID=Customer_ID;
ocustomerEntity.EntityTypeID =1;
.
.
.
.
ocustomerEntity.CreatedTime =System.DateTime.Now;
ocustomerEntity.CreatedBy=Common.ActiveData.Instance.userid;
在这里,我需要在每一行中将客户值插入 Customer_Entity 。 Customer_Entity 表结构如下,
EntityID| CustomerID| EntityValue|
----------------------------------
1 | 22 |jasper |
2 | 22 |Company:Raj |
3 | 22 |Address |
ocustomer.CustomerName=customername
.
.
.
ocustomer.CreatedTime=system.DateTime.Now..
所以我需要使用唯一的 CustomerID 在每一行中插入所有值。需要帮助来解决这个问题。