Heiko Adams

Results 24 comments of Heiko Adams

I forgot the same can be done for PropertyNames

This is also part of my pull request #13

This is an example class generated by es studio [ViewReturns.zip](https://github.com/MikeGriffinReborn/EntitySpaces/files/4031037/ViewReturns.zip)

What kind of information do need/prefer?

> Did you change the prefix in the EntitySpaces Studio "Settings" => "Naming Conventions" tab by chance? Yes, because M$ naming conventions require classnames starting with an upper case letter....

> Hmmm, well then you must make sure your Custom Class is inheriting from the Es version, you might need to manually change your "Custom" class. I'll check when I'm...

Okay, I've checked it and the inheritance is correct.

The view-query class itself doesn't compile with compiler error "there is no constructor which accepts 0 arguments"

The class constructor signature is `public ViewReturnsQuery(string joinAlias)` but at least `public ViewReturnsQuery Query` creates a new query instance by calling `this.query = new ViewReturnsQuery();`

Okay I figured out that changing line 80 of Generated - Query (C#).est from `public (string joinAlias)` to `public (string joinAlias = "")`