We are on the same ship :-) I hope someone from the core team would guide us on this regard as to know how to go through the framework and learn a bit more about it and how the components are built together.
Are you getting this error with a specific file or all of them? I faced same problem it was something related to bundling.
Hi Tommy, thanks for the feedback.
My aim is to be understand how the framework works from A to Z. I have been working with the framework for 1 month now, I still feel I miss so many details and this gives an uncomfortable feeling, as with every change I want to introduce or anything to add I am always worried I will break something.
So my idea is that if I understand how everything is registered, how components communicate, then things will be easy.
Do you have a pattern or way of going through the framework details and learning it?
Thanks
One possible solution is this:
@media (max-width: 767px) {
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu {
margin-right: -60px;
}
.page-header.navbar .top-menu .navbar-nav>li.dropdown-notification .dropdown-menu:after,
.page-header.navbar .top-menu .navbar-nav>li.dropdown-notification .dropdown-menu:before {
margin-right: 60px;
}
}
Hello, This works fine when there are no parameters to feed in. Once I introduced parameters, no results are returned. I am trying to use a DataReader now. Since this is a single method on an AppService to generate an excel, is it possible to Open connection and Close it after executing reader?
Are SQL connections usually opened/closed per UOW method? If yes, then I should be able to open/close the connection without affecting anything else.
Or else, I need to create a new SqlConnection using the ConnectionString from the DbContext.Connection.ConnectionString.
Can you guide in here?
Thanks
Thanks :-)
Can you point me to the source code of UOW just to dig more and understand the idea better?
Hello, I open F12 in Chrome, then choose "Responsive" so that I decide on the width of the screen I want, then I open Snipping Tool that comes with Windows for free. That's all :)
Something like this would be fine and wont break the UOW?
public DataTable GetPocPivotQueue(int? tenantId)
{
// creates resulting Queue
var result = new DataTable();
// Use DataTables to extract the whole table in one hit
using (SqlDataAdapter da = new SqlDataAdapter("[dbo].[sp_GetPocInPivot]", this.Context.Database.Connection.ConnectionString))
{
da.Fill(result);
}
return result;
}
Thanks buddy :-)
Here you go: <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/481">https://github.com/aspnetzero/aspnet-zero/issues/481</a>
Thanks Hilal. Once the fix is there, is it possible to just take the fix and apply it to my existing download?