From 9ee0fe1bc6c3395b4ed6e209cfd3de6d14ab1f24 Mon Sep 17 00:00:00 2001 From: Rodrigo Bernardino Date: Mon, 8 Jan 2018 00:51:11 -0200 Subject: [PATCH] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e9253e..dbfddb4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,11 @@ Create a new class that will be used as your database repository. This class mos ```C# public class EntityRepository : EntityRepository, IEntityRepository where TEntity : class, IIdentifiableEntity, new() - { } + { + public EntityRepository(bool lazyLoadingEnabled, bool proxyCreationEnabled) + : base(lazyLoadingEnabled, proxyCreationEnabled) + { } + } ``` Create a new repository for **User** class. It will give you all the options to read and write to the users table that you have configured on your DbContext.