Hi Martin,
What is my problem is,
Still now there is no such CRT development in my office.
I took it as a challenge. so, for that environment is ready.
But the way of implementing the CRT is getting problem to me.
I am trying to creating a customer with some sample code.
But getting configuration related errors.
long channelId = 5637144654;
var CommercePrincipal = new CommercePrincipal(new CommerceIdentity(channelId, Enumerable.Empty<string>()));
string connectionString = "Server=AXPOS;Database=RetailHoustonStore;IntegratedSecurity=true";
var CommerceRuntimeConfiguration = new CommerceRuntimeConfiguration(connectionString);
RequestContext context = new RequestContext(CommerceRuntime.Create(CommerceRuntimeConfiguration, CommercePrincipal));
//Invoking Service
CustomerDataManager customers = new CustomerDataManager(context);
//Entity
Microsoft.Dynamics.Commerce.Runtime.DataModel.Customer customerEntity = new Microsoft.Dynamics.Commerce.Runtime.DataModel.Customer();
customerEntity.AccountNumber = "New0123456";
customers.CreateOrUpdateCustomer(customerEntity);
This is the code piece..
i am getting the problem at the below mentioned line,
var CommerceRuntimeConfiguration = new CommerceRuntimeConfiguration(connectionString);
It is throwing error like Cannot find the assembly or could not loaded assembly, like that message it is throwing..
Even i included the required dlls also getting the same problem..
I hope this may give some idea where i am strucking in my development area.
Guide me on this context.