6 Replies
typeof(IRepository<,>)
oh god
thank you
what excatly does this mean if we leave the generic types blank? I would have thought we do
typeof(IRepository<TId, TEntity>)
rather than typeof(IRepository<,>)
typeof(IRepository<,>)
is the type of IRepository<TId, TEntity>
without any of its parameters substituted.
typeof(IRepository<TId, TEntity>)
wouldn't work because TId
and TEntity
don't exist in that contextI think I understand, thank you
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.