My sql table has two columns that needs identity generated.
1) ID //its identity seeds trwo, identity(1,1)
2) pGuid //newid() as default values
Problem is when insert entry from UI then, it works for ID and not for pGuid field.
using entity framework, fluent API.
mapping added as
'this.property("pGuid").HasColumn("pGuid");`
what is missing with mapping and so, its not working.