WP7后台代理数据库访问

时间:2013-08-27 21:41:36

标签: database windows-phone-7 background agent

我是C#的初学程序员,所以我认为我的问题的解决方案可能很简单,但在找了好几天之后,我找不到任何对我有用的东西。

我有一个WP7应用程序,其中包含使用SQL CE创建的数据库。

CLASS PorniBD.cs

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Data.Linq.Mapping;

namespace PhoneClassLibrary1
{
    [Table(Name = "Papilleros")]
    public class PorniBD
    {
        [Column(IsPrimaryKey = true, IsDbGenerated = true)]
        public int Id { get; set; }
        [Column(CanBeNull = false)]
        public String Nombre { get; set; }
        [Column(CanBeNull = false)]
        public String FechaNac { get; set; }
        [Column(CanBeNull = false)]
        public Boolean Activo { get; set; }
        [Column(CanBeNull = false)]
        public String Icono { get; set; }
    }
}

CLASS PorniContext.cs

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Data.Linq.Mapping;
using System.Data.Linq;

namespace PhoneClassLibrary1
{
    public class PorniContext : DataContext
    {
        public PorniContext(string connectionString) : base(connectionString)
        {
            //
        }

        public Table<PorniBD> Papilleros
        {
            get
            {
                return this.GetTable<PorniBD>();
            }
        }
    }
}

我的应用在其他项目中创建了后台代理,就像我在此页面中了解到的那样:Link

现在,我需要从后台代理读取app DB,这个类包含以下OnInvoke void:

protected override void OnInvoke(ScheduledTask task)
        {
            List<PorniBD> listapapilleros = new List<PorniBD>();
            using (PorniContext basedatos = new PorniContext("Data Source='isostore:/basedatos.sdf'"))
            {
                listapornis = basedatos.Papilleros.ToList();
            }

            // Launch a toast to show that the agent is running.
            // The toast will not be shown if the foreground application is running.

            ScheduledActionService.LaunchForTest(task.Name, TimeSpan.FromSeconds(10));
            NotifyComplete();
        }

但这是不可能的,因为DataSource在每个项目中都是不同的(我认为),而且我认为有必要修复更多......

非常感谢你的帮助,对不起,如果我的英语水平让我的解释有点难以理解......

1 个答案:

答案 0 :(得分:1)

只需创建“Windows Phone Class Library”类型的第三个项目。在第三个项目中移动数据库代码,然后从主项目和后台代理项目中引用它。