This question is locked. New answers and comments are not allowed.
Hi I have a Silverlight Project. In a Project I have a connection to database by ADO.NET, in the other project i need to do a query to the database, but i cant get information:
using
PowerIndicadores.Web;
namespace
PowerIndicadores
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
//needed for the 3D zoom & interactivity out-of-the-box
chart1.DefaultView.ChartArea.Extensions.Add(
new CameraExtension());
chart2.DefaultView.ChartArea.Extensions.Add(
new CameraExtension());
chart3.DefaultView.ChartArea.Extensions.Add(
new CameraExtension());
fopsDomainContext dbContext = new fopsDomainContext();
var query = (from p in dbContext.temp_kpi_prod_leadtimeregistrostemas select p.nmbre_lnea_inv);
Thanks a lot.
Shirley