gpt4 book ai didi

rust - 我如何使用Diesel的主键以外的其他列查找值?

转载 作者:行者123 更新时间:2023-12-03 11:33:39 24 4
gpt4 key购买 nike

我有一个用户表,希望使用Diesel执行搜索以确保用户名尚未被使用。我发现执行查询的唯一方法是使用find()函数,该函数使用主键。是否有另一个函数可以使用其他字段(类似于SELECT * FROM users WHERE username = foo)进行搜索?
这是我的用户表:

CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE TABLE users (
user_id uuid PRIMARY KEY DEFAULT uuid_generate_v4() NOT NULL UNIQUE,
username VARCHAR(255) NOT NULL UNIQUE,
password VARCHAR(60) NOT NULL
);
这是我正在使用的Rust结构:
#[derive(Queryable, AsChangeset, Deserialize, Serialize)]
#[table_name = "users"]
pub struct User {
pub user_id: uuid::Uuid,
pub username: String,
pub password: String,
}

#[derive(Insertable, Deserialize, Serialize)]
#[table_name = "users"]
pub struct InsertableUser {
pub username: String,
pub password: String,
}

最佳答案

Diesel提供了一种通用的 .filter 方法,让您构造任意复杂的where子句。
对于您的示例查询,您寻找类似的内容:

users::table.filter(users::username.eq("foo"))

关于rust - 我如何使用Diesel的主键以外的其他列查找值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65723826/

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