-
Notifications
You must be signed in to change notification settings - Fork 549
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EF dependency on non-existing String.Concat __arglist overload #619
Comments
We do not have plans to add cross-plat vararg support to .NET Core in near future. Is it possible to avoid a hard dependency on existence of this method in EF? |
@jkotas EF6 currently doesn't run on .NET Core--this is scheduled for .NET Core 3. I expect at that time we can just remove support for the overload, but I haven't fully investigated yet. |
Fixed by #781 |
@bricelam still having this error. tried updating to the latest nightly build of EF6 (6.3.0-beta1-62412). Any ideas? Please find the stack trace below.
|
Our new nightly builds are in this feed: They also depend on packages in this feed: |
EntityFramework6 uses String.Concat with __arglist overload:
https://github.com/aspnet/EntityFramework6/blob/master/src/EntityFramework/Core/Objects/ELinq/MethodCallTranslator.cs#L1493
if you run this on .NET Core you will get null that leads to crash later.
mono/mono#9996 has more details with a real-world repro.
The text was updated successfully, but these errors were encountered: