Skip to content

Commit 70d0daf

Browse files
author
Jose Ramirez
committed
Fixed EF code snippet that requires the collation to be specified.
1 parent 891c5b5 commit 70d0daf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/MySql.Data.EntityFramework5/Properties/SchemaDefinition-8.0.ssdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
<DefiningQuery>
188188
SELECT
189189
CONCAT(f.SPECIFIC_SCHEMA, '.', f.SPECIFIC_NAME, '.', f.PARAMETER_NAME) AS `Id`,
190-
CONCAT(f.SPECIFIC_SCHEMA, '.', f.SPECIFIC_NAME) AS `ParentId`,
190+
CONCAT(f.SPECIFIC_SCHEMA, '.', f.SPECIFIC_NAME) COLLATE utf8_tolower_ci AS `ParentId`,
191191
f.PARAMETER_NAME AS `Name`,
192192
f.ORDINAL_POSITION `Ordinal`,
193193
f.DATA_TYPE AS `TypeName`,

0 commit comments

Comments
 (0)