エンティティを紺碧に格納するのと同じ機能を実行する次のメソッド間の長所と短所(ある場合)を理解するのを誰かが手伝ってくれますか(私の場合)?
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();
}