Is it possible to create a sequence without changing the field to id?
Id(x => x.Id).GeneratedBy.Identity();
Map(x => x.DocumentoNumero);
Using this example, I would like to keep a sequence for DocumentoNumero
, but at the same time I have id already doing this and need to keep it this way.