自定義對象的名單上有一個自定義類下述類型的錯誤,同時存儲在獨立存儲
[Table]
class MyApp
{
public MyApp()
: base()
{
}
[Column(IsPrimaryKey=true, UpdateCheck = UpdateCheck.Never)]
public string appCode { get; set; }
[Column(UpdateCheck = UpdateCheck.Never)]
public string procCode { get; set; }
}
我有一個包含MyApp的對象的列表,其是如下另一個類:
[Table]
class ApplicationUser
{
public ApplicationUser()
:base()
{
}
[Column(IsPrimaryKey = true, UpdateCheck = UpdateCheck.Never)]
public string userId { get; set; }
[Column(UpdateCheck = UpdateCheck.Never)]
public List<MyApp> applicationList { get; set; }
}
在呼籲在我的DataContext類中的CreateDatabase()方法,我得到以下錯誤:
Unable to determine SQL type for 'System.Collections.Generic.List`1[XCell.Framework.data.MyApp]'
請指導我。
只是爲了檢查 - 據我瞭解'ApplicationUser'應該與'MyApp'爲一對多關係,對嗎? – danyloid 2014-10-28 10:20:43
@danyloid是的。一個應用程序用戶可以有多個應用 – 2014-10-28 10:24:23
是否有可能將一個應用程序分配給多個用戶? – danyloid 2014-10-28 10:31:07