I just tested with EF and it works fine. You are probably missing the namespace so you have a naked partial class. That's why I added the reality check -
<ScaffoldColumn(False)>_
Public Property QuantityPerUnit() As Object
Get
Return _QuantityPerUnit
End Get
Set(ByVal value As Object)
_QuantityPerUnit = value
End Set
End Property
if you see the QuantityPerUnit column, your partial class is naked and not working.
>>I just tried the read-only suggestion and it does not work.
Correct, that will be a new feature. It's not working right now.