Is it possible to use buillt-in sql functions like user_name() in a LINQ query? If not, can I use something else?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
It depends on the provider. For example, in LINQ to Entities against SQL Server you can use
SqlFunctions– which has aUserNamemethod which corresponds toUSER_NAME()in Transact-SQL. (There are many other methods and properties. For the current user, you can just use theCurrentUserproperty, for example.)