0

添加一对多关系实体时出现 InvalidCaseException。它在 Add not on SaveChanges 上失败。

无法将“System.Collections.Generic.List`1[UserAccount]”类型的对象转换为“UserAccount”类型。

尝试将 X 的集合大小写为 X 的一个实例

(父母或一个实体)

[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false), Serializable()]
public class Merchant
{   

    /// <summary>
    /// Standard ID
    /// </summary>
    [Key]
    [DatabaseGenerated(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.Identity)]
    public int ID { get; set; }
    [DataType(DataType.Text), MaxLength(100)]
    /// <summary>
    /// UserFriendly Name 
    /// </summary>
    public string MerchantName { get; set; }

    /// Billing Information
    /// </summary>
    public virtual ICollection<BillingTransactions> BillingTransactions { get; set; }

    /// <summary>
    /// List of Accounts for this merchant  (pulled from DBAccounts)
    /// </summary>
    public virtual ICollection<UserAccount> UserAccounts { get; set; }
 }

(孩子或许多)

public class UserAccount
{

    private string loginID;
    [Key]
    [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
    /// <summary>
    /// Standard ID 
    /// </summary>
    public int ID { get; set; }

    public int MerchantId { get; set; }

    [ForeignKey("ID")]    
    public Merchant Merchant { get; set; }
  //Obviously there are more properties here....
 }

我按如下方式创建新实体:

 public void CreateNewMerchant(UserAccount useraccount)
    {
        Merchant merchant;
        if (useraccount.Merchant == null) //New unknown merchant
        {
            merchant = new Model.Merchant.Merchant();
            merchant.UserAccounts = new List<UserAccount>();
            merchant.UserAccounts.Add(useraccount);
        }
        else
        {
            merchant = useraccount.Merchant;
        }

        ServiceBase<Merchant> sb = new Core.ServiceBase<Merchant>();
        base.Add(merchant); 
        base.Save();




    }

这适用于类似表单界面的向导。第一步是创建一个用户帐户。下一步是填写新的商户信息。向导步骤是创建子对象用户帐户和空父对象,然后在下一步中创建父对象。

我的代码正在创建一个空白/空父级并将子级/用户帐户添加到空商家并添加到数据库中。

为什么我会收到无效的强制转换异常?

4

1 回答 1

1

你需要...

[ForeignKey("MerchantId")]
public Merchant Merchant { get; set; }

...而不是[ForeignKey("ID")]将主键用作外键,因此定义一对一而不是一对多关系。

于 2013-09-01T19:21:31.500 回答