GithubHelp home page GithubHelp logo

Comments (4)

enrij avatar enrij commented on June 12, 2024

If I got it right, specification and EF Core should handle your request already:

// Assuming Material having a property Type of type MaterialType

internal sealed class MaterialByMaterialTypeNameSpecification : Specification<Material>
{
    internal MaterialByMaterialTypeNameSpecification(string name)
    {
        // Deal with an empty name
        ArgumentException.ThrowIfNullOrEmpty(name);

        Query.Where(material => material.Type.Name == name)
    }
}

// Somewhere in your code
{
    private readonly IRepositoryBase<Material> _repository;
 
    // ...

    public void Bar(CancellationToken cancellationToken = default)
    {
        var specification = new MaterialByMaterialTypeNameSpecification("Foo");
        List<Material> materials = await _repository.ListAsync(specification, cancellationToken);
        // Do something with the returned materials
    }
}

from specification.

ertugrulkaya avatar ertugrulkaya commented on June 12, 2024

Hi Thank you for answer. But my question is somehow different.

Let me explain.

I have MachineDto which is also include Machine group And MachineGroup Class.

When i retrivening Machine data including MachineGroup and convert to MachineDto, finally show on table for user. And I already implemented Pagination.

when user try to search MAchineGroupName in the table, serach function is try to search in machine table. On the machine table hasnt machinegroup name in db table.

So that How can i implmemnt this request by using ardalis.specifiacation?

public class MachineBySearchRequestSpec : EntitiesByPaginationFilterSpec<Machine, MachineDto>
{
    public MachineBySearchRequestSpec(SearchMachinesRequest request)
        : base(request) =>
        Query.OrderBy(c => c.Name, !request.HasOrderBy());
}

public class EntitiesByBaseFilterSpec<T> : Specification<T>
{
    public EntitiesByBaseFilterSpec(BaseFilter filter) =>
        Query.SearchBy(filter);
}
> public class MachineDto : IDto
> {
>     public Guid Id { get; set; }
>     public string Name { get; set; } = default!;
>     public Guid MachineGroupId { get; set; }
>     public string MachineGroupName { get; set; } = default!;
>     public string EquipmentNo{ get; set; } = default!;
> }
> 
> public class MachineGroup 
> {
>     public Guid Id { get; set; }
>     public string Name { get; set; } = default!;
>    
> }







> If I got it right, specification and EF Core should handle your request already:
> 
> ```cs
> // Assuming Material having a property Type of type MaterialType
> 
> internal sealed class MaterialByMaterialTypeNameSpecification : Specification<Material>
> {
>     internal MaterialByMaterialTypeNameSpecification(string name)
>     {
>         // Deal with an empty name
>         ArgumentException.ThrowIfNullOrEmpty(name);
> 
>         Query.Where(material => material.Type.Name == name)
>     }
> }
> 
> // Somewhere in your code
> {
>     private readonly IRepositoryBase<Material> _repository;
>  
>     // ...
> 
>     public void Bar(CancellationToken cancellationToken = default)
>     {
>         var specification = new MaterialByMaterialTypeNameSpecification("Foo");
>         List<Material> materials = await _repository.ListAsync(specification, cancellationToken);
>         // Do something with the returned materials
>     }
> }
> ```

from specification.

enrij avatar enrij commented on June 12, 2024

Hi...

I'm afraid but I don't understand what you are looking for... In addition there is no SearchBy property nor method in Query property of Specification so I assume you have some extension methods somewhere...

I'd love to help but provide the complete code (regarding the issue, obviously) or a PoC repo

from specification.

ertugrulkaya avatar ertugrulkaya commented on June 12, 2024

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.