Andrew White

Results 281 comments of Andrew White

@kesavan-m-19 and @priyankasyal Check out PR #805 if contains an echo store which is kind of a dummy store that returns a tenant info with the identifier set and no...

Hi, I don't see anything right off the bat that indicates why that is happening. Can you post a link to a repo that shows the problem in action?

Hi, no native support for this scenario but I recommend you look at `MultiTenantDbContext`, particularly the 'OnModelBuilding' method and modify as you need it. If you aren't relying on shadow...

@leaditnet I'm not sure if this helps but this is how I mock `HttpContext` in many of my unit tests. ``` var mock = new Mock(); mock.SetupProperty(c => c.RequestServices); var...

Hi, I would be interested -- probably as part of a new package. Does it integrate with EFCore? I'm not a Postgres expert but I can see why it would...

Hi, sorry for the slow reply. I do not plan on adding this feature simply because I want to keep `EFCoreStore` as simple as possible to serve as an example....

Hello, The library will not actually create databases for you -- TryAdd is to add a tenant to the existing tenant store database not the database itself. For now the...

Hi @HmichaelG Sorry for the late reply. I don't plan to include it because it is a heavy dependency to add for those that don't need it. However you should...

@devalot76 this looks good to me. I'd like to make this more seamless in the future and it's on the list...

@hbulens I'm glad you caught that. I definitely would want it to be smart enough to avoid that type of issue.