Your current API is an implementation of the Active Record Pattern. This pattern tends to work fine when the object model used in the code is a one-on-one match with the database model. Another advantage is that tooling exists to generate these classes,including the persistence code, and database tables .
The alternative you suggest is the Repository Pattern. As you already mention implementing this is a bit more complex, but has several advantages. Since you can implement any kind ORM tool you're not limited to one-on-one mappings, but can implement more complex mappings where the object model can be different from the database model. So you don't have to force an object model in the database or the other way around. However the more complex mappings, other than one-on-one can't be generated and require some
Another advantage is that you can create tests more easily, because you can create a Mock repository that doesn't even require a database.
Using the Repository Pattern you also separate the model from the persistence logic.
In both situations it's possible to write the persistence methods in a generic fashions so that the persistence code is generic a doesn't need to know about a specific object that needs to be persisted. This is obvious for the Active Record Pattern since all these objects implement save, delete, update, etc.. For the the Repository Pattern you cal can also use ORM tools that work on any object so that code like this is possible:
Repository.Save(object)
Repository.Save(ObjectOfAnyType);
object
ObjectOfAnyType can be anything as long as the ORM tool has some mapping defined/implemented for the type of the object.
So you choose, do you want or need these advantages at the cost of a little added complexity. Or does the simplicity of the Active Record Pattern suffice.
I always tend to use the Repository Pattern, but have used the Active Record Pattern on occasion, mostly for quick prototyping.
