Windows Phone:如何在SQLite-net中排除列/属性?

前端之家收集整理的这篇文章主要介绍了Windows Phone:如何在SQLite-net中排除列/属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我使用sql Server CE for Windows phone,我可以选择类映射到数据库表的哪些属性.这允许我在类上具有抽象属性.

例如

[Table]
public class MyClass
{
    // this property is written to the database
    private int _ItemId;

    [Column(IsPrimaryKey = true,IsDbGenerated = true,DbType = "INT NOT NULL Identity",CanBeNull = false,AutoSync = AutoSync.OnInsert)]
    public int ItemId
    {
        get
        {
            return _ItemId;
        }
        set
        {
            _ItemId = value;
        }
    }

    // abstract class. obvIoUsly this just an example. the real code checks for 11. =)
    // under sqlite,it looks like this will get stored in the db?
    public bool IsItemIdSeven
    {
        get{ return _ItemId == 7; }
    }
}

是否可以从sqlite-net中的类定义中排除属性?我不能使用扩展,因为UI绑定使用了一些这些属性.

如果您使用的是 SQLite-net,则可以使用[忽略]属性
原文链接:https://www.f2er.com/windows/364174.html

猜你在找的Windows相关文章