I may have a small problem defining what I ask but I’ll do my best:
I built an ASP.NET website and I want to use Microsoft Azure. So I defined in a C# class file an object that extends TableServiceEntity.
I’m trying to get the code behind page of a certain webpage to know this type of class. But I can’t seem to find the right way to do it. I guess it has to do with some Using.
It is in the same project as the webpage in a different folder.
Thanks,
I solved this issue adding Namespace to my C# class.
The first solution I found was to move it too AppCode but that is the same as giving it a namespace.
Thanks