bug-bounty517
xss285
rce136
bragging-post119
account-takeover105
open-source96
google95
exploit88
authentication-bypass85
csrf85
privilege-escalation82
facebook78
stored-xss74
microsoft70
access-control69
web-security68
ai-agents65
cve65
reflected-xss63
writeup59
malware56
ssrf54
input-validation53
defi48
sql-injection48
smart-contract48
information-disclosure47
tool47
cross-site-scripting47
api-security46
privacy46
ethereum45
phishing42
llm38
automation38
web-application38
vulnerability-disclosure37
opinion36
burp-suite36
lfi34
html-injection34
web334
apple34
smart-contract-vulnerability33
machine-learning33
infrastructure33
responsible-disclosure33
reverse-engineering33
oauth33
cloudflare33
0
8/10
C# strings default to nvarchar(4000) in Dapper's parameter binding, causing implicit conversions on varchar columns that prevent SQL Server from using indexes and force full table scans instead of index seeks. The fix is to explicitly use DbType.AnsiString with DynamicParameters to match the column type and restore index performance.
sql-server
performance-optimization
dapper
implicit-conversion
index-optimization
parameter-binding
query-tuning
c-sharp
database-performance
ado-net
Dapper
SQL Server
DbType.AnsiString
DbString
DynamicParameters
CONVERT_IMPLICIT
Query Store