Hello!
Sorry if this seems a silly questions but can you select from a view in subsonic? I have a view called fixturesinfo and I am running this subsonic query:
FixturesInfoCollection fixtures = new SubSonic.Select().From<FixturesInfo>()
.Where(FixturesInfo.Columns.FixtureDate).IsGreaterThan(DateTime.Now.AddMonths(-3))
.ExecuteAsCollection<FixturesInfoCollection>();
When I run it I get an error dbo.FixturesInfo. This happens with all views. Am I doing something wrong here?
Thanks Bex