在SQLITE的通用应用程序中使用相同的模型表类

时间:2015-03-19 18:33:39

标签: c# sqlite windows-phone-8.1 windows-8.1 win-universal-app

我想为SQLite数据库的Windows 8.1和Windows Phone 8.1项目使用相同的类。我的模型类是这个

public class person 
    { 

        [MaxLength(5), PrimaryKey] 

        public String name { get; set; } 
        [MaxLength(255)] 
        public String address { get; set; } 
        [MaxLength(11)] 
        public Double phone { get; set; } 
    } 

我已经安装了visual studion 2013扩展名,即

  • Windows运行时的Sqlite
  • Sqlite for windows phone 8.1

我已将sqlite-net classess放在共享项目中,但我坚持放置模型人员表类的位置,以便两个项目都可以重用它。我不希望两个项目都有自己的类。因为两个项目都使用相同的命名空间

using Sqlite;

如何解决此需求帮助。

0 个答案:

没有答案