gpt4 book ai didi

dapper - 用于 varchar 的 DbString、IsFixedLength 和 IsAnsi

转载 作者:行者123 更新时间:2023-12-01 13:27:37 25 4
gpt4 key购买 nike

我是 Dapper 的新手,想知道当我的代码在没有它的情况下运行时为什么会出现以下建议?

Ansi Strings and varchar

Dapper supports varchar params, if you are executing a where clause ona varchar column using a param be sure to pass it in this way:

 Query<Thing>("select * from Thing where Name = @Name", new {Name = new
DbString { Value = "abcde", IsFixedLength = true, Length = 10, IsAnsi
= true });

On SQL Server it is crucial to use the unicode when querying unicodeand ansi when querying non unicode.


下面是我的代码,它在不使用 DbString 等的情况下针对 SQL Server 2012 运行。
create table Author (
Id int identity(1,1),
FirstName varchar(50),
LastName varchar(50)
);
go
insert into Author (FirstName, LastName) values ('Tom', 'John');

public Author FindByVarchar(string firstName)
{
using (IDbConnection db = DBHelper.NewSqlConnection())
{
return db.Query<Author>("Select * From Author WHERE FirstName = @firstName", new { firstName }).SingleOrDefault();
}
}
问题:
1 为什么在这种情况下使用 DbString 类型?
2 当“abcde”为 5 时,为什么将长度设置为 10(例如长度 = 10)?
3 当我当前的代码工作时,我还需要使用 DbString 吗?
4 为 unicode 列设置 IsAnsi = false 是否正确?
5 对于varchar 列,设置IsFixedLength = false 并忽略设置Length 是否正确?

最佳答案

该示例的目的是描述数据类型为 char(10) 的场景。 .如果我们刚刚使用 "abcde" ,Dapper 可能会认为 nvarchar(5)是合适的。在某些情况下,这会非常低效 - 特别是在 where 中子句,因为 RDBMS 可以决定它不能使用索引,而是需要表扫描对来自 char(10) 的表中的每一行进行字符串转换。到 nvarchar版本。正是出于这个原因,DbString存在 - 帮助您准确控制 Dapper 为文本数据配置参数的方式。

我认为这可以回答您的 1 和 2。

3:您使用的是 ANSI(非 Unicode 文本)还是固定宽度的文本?请注意,如果您始终避免使用 unicode,也可以全局设置 ANSI 默认值

4:是的

5:是的

4+5 组合:如果您使用 nvarchar :只需使用 string

关于dapper - 用于 varchar 的 DbString、IsFixedLength 和 IsAnsi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47741126/

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