Ryan Holmes

Results 158 comments of Ryan Holmes

It might be nice to even be able to pipe in the output of `Get-DbaDbBackupHistory` into `New-DcnImage` so that it knows exactly how to run the restoration plan. I have...

This was one of my other purposes for setting `max_databases`. Never got around to doing it tho. I can get started on this once pull request for new modals #47...

Actually... You could move data to a database that has not been initialized yet. So really you can enter any number that is not above `max_databases`. Moving a key to...

True, I overlooked that. Still, you can move the key to any DB that is not the current and that is included in `max_databases`. Just need to decide to to...

This looks like it's a TypeORM bug related to MSSQL. Test code (removes odata from the equation, just straight up TypeORM methods) ``` postsRepository.createQueryBuilder('Post') .andWhere('author.id = :p0').setParameters({'p0': 1}) .select('Post.id, Post.title,...

Upstream issue: https://github.com/typeorm/typeorm/issues/7775 This project produces the `'Post.id, Post.title, Post.text, Post.author'` select statement, and I'm unsure if `Post.author` is correct syntax to use for TypeORM (examples I've seen are things...

Using the provided example: ``` {{base_url}}/api/authors?$select=id,name&$expand=posts($select=title)&$filter=posts/id eq 1 ``` I want to get from this ``` [ { "id": 1, "name": "Ursula Manning", "posts": [ { "title": "Ultricies Sem Ltd"...

I've been looking through the odata spec, and from what I gather, if you provide `$expand`, it should return that expanded data http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_SystemQueryOptionselect > Expanded navigation properties MUST be returned,...

@andryuha49 that's up to you! Normally I do one PR per feature / bug fix, but if that's the easiest way for you to review, I'm okay with it 😊

@brandonmpetty unsure about this repo, but I've forked it for my own needs for the projects at my job. https://github.com/blitzmann/odata-v4-typeorm It has a variety of fixes and improvements, but it's...