Base solution for your next web application

Activities of "terrybentley"

Answer

Thanks you for your quick response (as always)!

I was thinking that was all that was required but was not sure of the unexpected repercussion of overriding.

I should then be able to just do an Async Ajax call to the Log table and on failure write to the console log.

I have been able to resolve these errors. There were quite a few more differences that I came across that needed to be applied. The application is almost working - I now need to figure out why I am only seeing the Dashboard and Administration in the sidebar.

Thanks. I was using List<ComboBoxItemDto>, I will switch to the ListResultOuput<ComboBoxItemDto> to see how that looks.

I am using the localization that you mention for static labels and such but need to access the database for localized text data values.

I had a look at the sql generated using SQL Profiler and in both the following cases the WHERE clause was added limiting the rows fetched from the table.

_myRepository .GetAll() .Where(e => e.AssetId == input.AssetId && e.StartTime >= input.StartTime) .WhereIf(input.EndTime.HasValue, e => e.EndTime <= input.EndTime)

_myRepository .GetAllList((a => a.Core.IsActive == true && a.Core.ApplicationId == input.ApplicationId));

Showing 1 to 4 of 4 entries