Ronnie Overby

Results 41 comments of Ronnie Overby

Here's my bootstrapper: ```c# public class BS : DefaultNancyBootstrapper { protected override void ApplicationStartup(TinyIoCContainer container, IPipelines pipelines) { pipelines.AfterRequest += ctx => { ctx.Response.WithHeader("Access-Control-Allow-Origin", "*") .WithHeader("Access-Control-Allow-Methods", "POST, GET, DELETE, PUT,...

> there is a reason why dotnet restore is separated from dotnet build and for the same reason should be separate task aalo libman restore. `dotnet restore` is not separated...

A year later... You can't even cherry pick files not in the package root. Pretty useless! This seems to work for me, though: ```js { "library": "node_modules/datatables.net-bs4/css/", "destination": "wwwroot/lib/datatables.net-bs4/css/" },...

Some fixes and extra extensions: ```c# using DataTables.AspNet.Core; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; namespace MyApp.Extensions { public static class DataTablesExtensions { public static IQueryable SortAndPage(this IQueryable source,...

@professordave I think you should share your exceptions. I would think using the `AsQueryable` extension method would be the thing to do.

https://github.com/ALMMa/datatables.aspnet/blob/115ee9a18685c6206139c9e794c5a0ce22241d85/samples/DataTables.AspNet.Samples.AspNetCore.BasicIntegration/Controllers/HomeController.cs#L66-L68

In my aspnet core project, I just did this: ```js // some.js $('#myTable').DataTable({ serverSide: true, ajax: { url: '/someAjaxUrl', data: function (d) { d.appJson = JSON.stringify({ someNumber: 123, someString: "hello",...

The best solution for me was to open the project file and modify the target framework version. I'm not quite sure why Microsoft's U-SQL project templates are in such disarray.

For me, file... new project.. fails to build out of the gate. On Wed, Feb 27, 2019, 3:25 PM Michael Rys wrote: > I think the main reason is that...