Hi
I've recently changed the primary keys in all my tables to "id" in order for them to work with Azure Mobile Services.
When I generate the data context class for the phone, it generates..
```
<Global.System.Data.Linq.Mapping.ColumnAttribute(Name:="id", Storage:="_Id", AutoSync:=AutoSync.OnInsert, DbType:="Int NOT NULL IDENTITY", IsPrimaryKey:=true, IsDbGenerated:=true, UpdateCheck:=UpdateCheck.Never)> _
Public Property Id() As Integer
```
Is there any way to preserve the case of the original key ?
I've recently changed the primary keys in all my tables to "id" in order for them to work with Azure Mobile Services.
When I generate the data context class for the phone, it generates..
```
<Global.System.Data.Linq.Mapping.ColumnAttribute(Name:="id", Storage:="_Id", AutoSync:=AutoSync.OnInsert, DbType:="Int NOT NULL IDENTITY", IsPrimaryKey:=true, IsDbGenerated:=true, UpdateCheck:=UpdateCheck.Never)> _
Public Property Id() As Integer
```
Is there any way to preserve the case of the original key ?