Hello, I'm creating an application using Fluent API + Entityframework. However in my domain classes when determining that a property is PK it automatically defines it as serial, I would not like to get this behavior because it will automatically create a SEQUENCE for each PK field in my tables. How do I remove this validation and define that when the field is primary key I do not want it to be serial and only integer?
Thank you