darxis / EntityFramework.LazyLoading

LazyLoading for EF Core
MIT License
21 stars 4 forks source link

Fix issue #21 #22

Closed gnaeus closed 7 years ago

gnaeus commented 7 years ago

Simplify API of LazyReference by using [CallerMemberName] attribute #21:

get => _parentLazy.GetValue(this, nameof(Parent));
// to
get => _parentLazy.GetValue(this);
darxis commented 7 years ago

LGTM, thank you for your contribution 👍 This will be published along with 1.1.2 support