0

How to map CRM entities to SQL Server tables dynamically when sequence of properties are not same using C# ?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459

1 Answers1

0

I believe you want to get the fields of entities that have been created in CRM and then work with them in your c# application?

If this is the case, then you would need to use the IOrganizationWebService to get a list of entities, their attributes and data types. And then, using this information, interact with them as late-bound entities.

These links should help you get started:

shane carvalho
  • 130
  • 1
  • 10