Results 267 comments of Alex Rothberg

In general `ExtendedActionLinkRouterMixin` seems to be a copy and paste of a very old version of the DRF `SimpleRouter`.

Unless @tomchristie has changed his mind since the last discussion, that won't be happening.

Linking to comment: https://github.com/chibisov/drf-extensions/issues/15#issuecomment-58711880

Given what that method is used for internally, do you want the set of requests that it applies to to be as broad as @kevin-brown lists?

One case: If I want to map between different representations of data, I find it convenient to declare an abstract model and then use the Serializer to deserialize on one...

How is this issue here different from how the other project handles it: https://github.com/dropbox/sqlalchemy-stubs/blob/55470ceab8149db983411d5c094c9fe16343c58b/sqlalchemy-stubs/orm/query.pyi#L13

That seems solvable with a generic on the Row object, no?

And FWIW, being able to get typing on these is quite convenient: https://github.com/dropbox/sqlalchemy-stubs/blob/55470ceab8149db983411d5c094c9fe16343c58b/sqlalchemy-stubs/orm/query.pyi#L80-L86: ```python def all(self) -> List[_T]: ... def first(self) -> Optional[_T]: ... def one_or_none(self) -> Optional[_T]: ... def...

Understood, but that does present a bit of a challenge when thinking of migrating from 1.3 to 1.4 on the way to 2.0. Currently I am on 1.3 using the...

Any chance we can get this merged?