ObjectExporter
ObjectExporter copied to clipboard
Object initializer missing property assignemnt
Using VS2015 and C#6
Code generated:
var response = new Xyz.DomainObjects.OrderResponse
{
new Xyz.DomainObjects.OrderDetails
{
...
Should be:
var response = new Xyz.DomainObjects.OrderResponse
{
OrderDetails = new Xyz.DomainObjects.OrderDetails
{
...
Hi @miczdem, thank you for taking the time to post this issue, I'm currently aware of this issue and working to resolve it in an upcoming major update.
Hi @OmarElabd, you're welcome! Thanks for creating and maintaining this awesome tool. It has saved me a lot of time generating objects for unit tests. Looking forward to v2!
Hi! I have the same issue! Isn't resolved yet?