#abp
Read more stories on Hashnode
Articles with this tag
ABP 框架默认使用 Id 作为领域模型的主键,其类型为 Guid。但实际开发过程中,有些表的主键可能需要使用其他类型如 long、string等等,接下来我们就来了解在 ABP 中如何使用自定义主键 修改领域模型 这里我们将主键类型修改为 long 类型 public class User :...