zzzprojects / EntityFrameworkExtras

EntityFrameworkExtras provides some useful additions to EntityFramework such as executing Stored Procedures with User-Defined Table Types and Output Parameters.
https://entityframework-extras.net/
MIT License
80 stars 40 forks source link

EntityFrameworkExtras.EFCore5 nuget package is empty #45

Closed bfalala closed 2 years ago

bfalala commented 2 years ago

https://github.com/zzzprojects/EntityFrameworkExtras/blob/f0f4a41482f676910aa2650bd2ab7d4ebefea2c2/EntityFrameworkExtras.EFCore5/EntityFrameworkExtras.EFCore5.csproj#L29

Hello, I wanted to use this library on EFCore 5 but it's impossible to reference in my code. I guess it's because this line is missing in csproj: <Import Project="..\EntityFrameworkExtras.Shared\EntityFrameworkExtras.Shared.projitems" Label="Shared" />

Can you please fix it ?

JonathanMagnan commented 2 years ago

Hello @bfalala ,

Thank you for reporting, you are indeed right!

It should be done later tomorrow or tonight (it seems GitHub is currently bugged, we cannot push code since the last 3h).

Best Regards,

Jon


Sponsorship Help us improve this library

Performance Libraries context.BulkInsert(list, options => options.BatchSize = 1000); Entity Framework ExtensionsBulk OperationsDapper Plus

Runtime Evaluation Eval.Execute("x + y", new {x = 1, y = 2}); // return 3 C# Eval FunctionSQL Eval Function

JonathanMagnan commented 2 years ago

Hello @bfalala ,

A new version has been released today and the missing code committed: https://github.com/zzzprojects/EntityFrameworkExtras/blob/master/EntityFrameworkExtras.EFCore5/EntityFrameworkExtras.EFCore5.csproj#L30

Let me know if everything is now working as expected.

Best Regards,

Jon

bfalala commented 2 years ago

Hello @JonathanMagnan,

It's working fine now 👍

Thanks !