Converting a LEFT OUTER JOIN to Entity Framework

前端 未结 3 2041
野性不改
野性不改 2020-12-05 14:55

Here is a SQL Query I want to convert to EF4.3

        command = database.GetSqlStringCommand(@\"
                                select 
                            


        
3条回答
  •  囚心锁ツ
    2020-12-05 15:14

    I went ahead and moved the entire query to a Stored Procedure on the database. This solves the problem by avoiding LINQ and ObjectBuilder in the first place.

提交回复
热议问题