Asked by @kamsar in [Twitter](https://twitter.com/kamsar/status/647924289321066496). The problem is that in order to get an `Item` instance, one have to write three lines of code: ``` csharp DbItem dbItem = new DbItem("item"); db.Add(dbItem); Item item = db.GetItem("/sitecore/content/item"); ``` There is a suggestion to introduce new `db.Create()` extension method which would combine the `Add()` and `GetItem()` functionality: ``` csharp DbItem dbItem = new DbItem("item"); Item item = db.Create(dbItem); ```