首页 > 解决方案 > 忽略属性不起作用 CassandraCSharpDriver

问题描述

我在实体模型中使用一些属性来维护关系,我正在使用[Ignore]从表中忽略该属性。

public class User : IdentityUser<Guid>
    {
        [Ignore]
        public string Password { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public string CommonName { get; set; }
        public string ProfilePhoto { get; set; }
        public bool IsDeleted { get; set; }
        [Ignore]
        public virtual ICollection<UserRole> UserRoles { get; set; }
    }

var User = new Table<User>(dataSession);
                User.CreateIfNotExists();

当我尝试使用上面的代码创建时,我得到了错误。

在此处输入图像描述

问题:我是否使用错误的脚本来创建表格或错误的忽略方式?

提前致谢

标签: c#cassandracassandra-3.0

解决方案


检查您是否为Ignore属性使用了正确的命名空间。Cassandra.Mapping.Attributes.Ignore是正确的一个,而另一个已弃用。

public class Program
    {
        public static void Main()
        {
            var cluster = Cluster.Builder().AddContactPoint("127.0.0.1").Build();
            var session = cluster.Connect();

            var User = new Table<User>(session, MappingConfiguration.Global, "users", "testks");
            User.CreateIfNotExists();
            var u = new User
            {
                Id = Guid.NewGuid(),
                Password = "123",
                FirstName = "123",
                LastName = "123",
                CommonName = "123",
                ProfilePhoto = "321",
                IsDeleted = false,
                UserRoles = new List<UserRole>
                {
                    new UserRole
                    {
                        Text = "text"
                    }
                }
            };
            User.Insert(u).Execute();
            var result = User.First(l => l.Id == u.Id).Execute();
            Console.WriteLine(JsonConvert.SerializeObject(result));
            Console.ReadLine();
            User.Where(l => l.Id == u.Id).Delete().Execute();
        }
    }

    public class User : IdentityUser<Guid>
    {
        [Cassandra.Mapping.Attributes.Ignore]
        public string Password { get; set; }

        public string FirstName { get; set; }
        public string LastName { get; set; }
        public string CommonName { get; set; }
        public string ProfilePhoto { get; set; }
        public bool IsDeleted { get; set; }

        [Cassandra.Mapping.Attributes.Ignore]
        public virtual ICollection<UserRole> UserRoles { get; set; }
    }

    public class IdentityUser<T>
    {
        [Cassandra.Mapping.Attributes.PartitionKey]
        public T Id { get; set; }
    }

    public class UserRole
    {
        public string Text { get; set; }
    }

3.0.18使用 C# 驱动程序对 Cassandra 运行上面的代码3.10.1似乎可以正常工作。Password和将UserRoles不存在于表模式中,并且它们都将null在使用 执行SELECT语句时存在Linq2Cql


推荐阅读