please see the sql and tell me how could i achieve the same with EF and linq
with tmp(plant_date)as(select cast('20170101'as datetime)union allselect plant_date +1from tmpwhere plant_date <'20170120')select plant_date, amtfrom tmp JOIN withyourtable ON ... option (maxrecursion 0)
please show me with code sample to achieve it with EF and LINQ query.
thanks