We are using Entity Framework and Linq and are creating Repository methods.
If I have a generic class T, how would I obtain the actual class name, using Dynamic Linq preferably?
public async Task GetTableName(T entity)
{
await T.
}