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, I am introducing a basic Workflow engine to drive the process of several forms in my application. Typically a user would receive an email or message in his/her inbox to open a form, complete the form, and submit.
Can I consider the Notifications as an engine to rely on to send messages to users telling them that a new Task is assigned to him/her and they can click a link in the message displayed in the notification popup to open a form or so?
Or better off create an Inbox etc.
Thanks
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
Hello I would like to learn and know details of the framework. How can I do that and where to start?
Shall I debug the code when I run the Web App? Is that doable and how to do it?
I'm using aspnet zero the paid one and would like to run the Web app and start checking how the framework starts from A to Z so as to understand details and know my way through it.
Thanks a lot
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;
}