有人可以帮助我了解以下方法之间的优缺点(如果有的话),这些方法具有将实体存储为天蓝色(在我的情况下)的相同功能吗?
public bool Save<T>(string tableName, T entity) where T : TableEntityBase, new()
{
throw new NotImplementedException();
}
对比
public bool Save(string tableName, TableEntityBase entity)
{
throw new NotImplementedException();
}