I am trying to use fluent nhibernate in a MVC project... i am very new to nhibernate and fluent... It seems the entities should have properties that are virtual and the set should be private for IDs... i use vb language...so tried using overrideable...it gives an error...
Public Overridable Property DesignId() As Integer
Get
End Get
Private Set(ByVal value As Integer)
End Set
End Property
it says property cannot be overrideable because it has a private accessor...have no idea how to go about...all tutorials in the net are in c#... my client specifically in vb....thanks in advance...