Hi,
When I add data in a page using folowing code
using (DataConnection connection = new DataConnection())
{
Demo.Users myUser = DataConnection.New<Demo.Users>();
myUser.Id = Guid.NewGuid();
myUser.Name = "John Doe";
myUser = connection.Add<Demo.Users>(myUser);
}
I don't find them the admin console in the data perspective for globaldatatypes
What am i missing or should I do extra to have them show up
tia Ronald
When I add data in a page using folowing code
using (DataConnection connection = new DataConnection())
{
Demo.Users myUser = DataConnection.New<Demo.Users>();
myUser.Id = Guid.NewGuid();
myUser.Name = "John Doe";
myUser = connection.Add<Demo.Users>(myUser);
}
I don't find them the admin console in the data perspective for globaldatatypes
What am i missing or should I do extra to have them show up
tia Ronald