How can I pass a parameter in Action?

private void Include(IList<string> includes, Action action)
{
    if (includes != null)
    {
        foreach (var include in includes)
            action(<add include here>);
    }
}

I want to call it like that

this.Include(includes, _context.Cars.Include(<NEED TO PASS each include to here>));

The idea is pass each include to the method.

66
задан wonea 30 May 2017 в 12:39
поделиться