Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8443603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T09:11:00+00:00 2026-06-10T09:11:00+00:00

I have a database that is supposed to store data in any language, there

  • 0

I have a database that is supposed to store data in any language, there is going to be a column that tells me which locale it is, so i can’t rely on database collation and will have to specify collation at runtime in queries.

I also have the problem that i want to use EF for dataaccess, as we know using EF one cannot specify collation at runtime. I am thinking about creating a sql function that takes collation as argument and apply that function in all of the Linq Queries.

but this fails

CREATE FUNCTION fn_Compare
(   
    @TextValue nvarchar(max),
    @Culture varchar(10)
)
RETURNS  nvarchar(max)
AS
BEGIN
    RETURN @TextValue COLLATE @Culture
END
GO

does anyone know if this can be done ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T09:11:01+00:00Added an answer on June 10, 2026 at 9:11 am

    You cannot do this. The collation returned by the function needs to be consistent across all the return values. For instance, the following generates an error:

    create function testfn (@test varchar(100), @i int)
    returns varchar(100)
    as
    begin
        return(case when @i = 0 then @test collate SQL_Latin1_General_CP1_CS_AS
                  else @test collate SQL_Latin1_General_CP1_CI_AS
             end)
    end;
    

    The error is due to a collation conflict.

    What you can do is use:

    alter database collate <whatever>
    

    Or, alternatively, create a new working database with the collation you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string I'm pulling from a Filemaker database that's supposed to read
Suppose that I have a database with student information: {'student_name' : 'Alen', 'subjects' :
Suppose I have an array that mimics a database table. Each array element represents
Suppose I have a class Customer that is mapped to the database and everything
Suppose I have a method that must return an object (say from a database
i have DataBase function that calculate distance by coordinates CREATE OR REPLACE FUNCTION distance(lat1
I have a database that has around 10k records and some of them contain
I have a database that had 15 years of cruft stuffed into it by
I have a database that has a table email_eml that stores 3 attributes name_eml,
I have a database that has 16 tables, but only four are relevant to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.