Non-static method requires a target

Issue #83 resolved
Emil Alipiev created an issue

code below works when there are results but it will throw an exception when no item is found for the given id, instead of returning null. why is it happening?

            List<Model.Item> models = null;

            models = await db_async.GetAllWithChildrenAsync<Model.Item>(i => i.id== id);

Comments (2)

  1. Log in to comment