gpt4 book ai didi

c# - 忽略属性不起作用 CassandraCSharpDriver

转载 作者:行者123 更新时间:2023-11-30 21:27:52 25 4
gpt4 key购买 nike

我正在使用实体模型中的一些属性来维护关系,我正在使用 [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();

当我尝试使用上面的代码创建时出现错误。

enter image description here

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

提前致谢

最佳答案

检查您是否为 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; }
}

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

关于c# - 忽略属性不起作用 CassandraCSharpDriver,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57028043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com