我有一个LINQ to SQL生成的类,它具有readonly属性:
<Column(Name:="totalLogins", Storage:="_TotalLogins", DbType:="Int", UpdateCheck:=UpdateCheck.Never)> _
Public ReadOnly Property TotalLogins() As System.Nullable(Of Integer)
Get
Return Me._TotalLogins
End Get
End Property
这可以防止它在外部被更改,但我想从我的类中更新属性,如下所示:
Partial Public Class User
...
Public Shared Sub Login(Username, Password)
ValidateCredentials(UserName, Password)
Dim dc As New MyDataContext()
Dim user As User = (from u in dc.Users select u where u.UserName = Username)).FirstOrDefault()
user._TotalLogins += 1
dc.SubmitChanges()
End Sub
...
End Class
但是对user._TotalLogins + = 1的调用没有被写入数据库?关于如何让LINQ看到我的更改的任何想法?
答案 0 :(得分:2)
将现有的TotalLogins属性设置为private或protected,并删除readonly属性。您可能还想重命名它,例如InternalTotalLogins。
然后在partial类中手动创建一个新属性,将其作为只读属性公开显示:
Public ReadOnly Property TotalLogins() As System.Nullable(Of Integer)
Get
Return Me.InternalTotalLogins
End Get
End Property
答案 1 :(得分:0)
Make a second property that is protected or internal(?)
<Column(Name:="totalLogins", Storage:="_TotalLogins", DbType:="Int", UpdateCheck:=UpdateCheck.Never)> _
protected Property TotalLogins2() As System.Nullable(Of Integer)
Get
Return Me._TotalLogins
End Get
Set(byval value as System.Nullable(Of Integer))
Return Me._TotalLogins
End Get
End Property
然后更新。我认为默认情况下它不会保存只读属性。无论如何,为什么要这样呢。我现在这是一个黑客,但嘿,这就是生活。
答案 2 :(得分:0)
在更改字段之前调用SendPropertyChanging()然后调用SendPropertyChanged(“”)。 这将使Table实体跟踪知道发生了变化。