I am working on a silverlight 3 site using expression blend 3 (silverlight project + website option in expression blend).
I need to add some business logic for the controls to consume (eg get ints for my gauges to pick up). If I add code to the class library, I cannot use all the namespaces and types - I assume because of the CoreCLR's limitations.
If I add the classes to the website itself, then I can see all the types but I can't seem to find/call the classes despite visibility levels and references all being added and correct (namespace ... is all correct).
What is the recommended way of adding logic to the structure of my project? If I add a completely seperate class library (say for example using Visual Studio) and then make services for my controls to use to consume the class library's features, can I see all types/namespaces in the framework?
Thanks