Giter Site home page Giter Site logo

Comments (3)

fiseni avatar fiseni commented on May 23, 2024

Hi @mpickers,

We might do this. There is no need to throw an exception, that method won't exist at all in the EF6 package. It will reference the netstandard2.0 TFM of Ardalis.Specification, and we have excluded this method in the interface for this TFM.

#if NET6_0_OR_GREATER
  IAsyncEnumerable<T> AsAsyncEnumerable(ISpecification<T> specification);
#endif

Probably we can do this change for the next release. We just have to think once again whether we're breaking any consumer.

from specification.

fiseni avatar fiseni commented on May 23, 2024

Hey @mpickers,

I just tested. We can't target netstandard2.1. Consumers will face runtime issues. For instance, if you consume the libraries from .NET6, and you have the following code (which you must have actually), then you'll face a peculiar issue. Since the base package targets .NET6 the AsAsyncEnumerable method in the interface will be enabled. On the other hand, the EF6 package compiled in .netstandard2.1 won't see it and the repo implementation will compile without it. Hence on runtime, you'll get an exception.

public class Repository<T> : RepositoryBase<T> where T : class
{
    public Repository(TestDbContext dbContext) : base(dbContext)
    {
    }
}

Anyway, we can target NET6 for EF6 package. In that case, indeed we have to throw NotImplementedException.

Are you ok with this?

from specification.

mpickers avatar mpickers commented on May 23, 2024

@fiseni Yes, that would be perfect, thanks.
Yes, I can see the peculiar happenings and have seen it in other migrations I've done, hence I suggested targeting net6. The netstandard2.1 comment was just stating that EF6 was "able" to be used by net6 projects.

from specification.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.