Dne 27.5.2012 10:22 "Oleksandr Bezhan" <oleksand...@gmail.com> napsal(a):
>
> I made it working. Just initialized pointer in other way:
> product := new(Product)
> instead of
> product := &Product{}
That sounds strange, it should be completely equivalent.
-j
Hi,
I was getting invalid entity type withsheetKeyStore := new(SheetKeyStore)
So I changed it tosheetKeyStore := SheetKeyStore{}
and it works.
Wow, what is wrong here? thats insane that I had to do trial and error to make it work.