Base solution for your next web application

Activities of "wmaiuri"

We plan to migrate to the latest version of Abp, but since we are close to release, that may not be an option. I have updated the ABP code, and it appears to be working. Thanks for your confirmation.

I received this error when trying to update the packages on our existing solution.

Had to remove WEBDAV in web.config

      <modules>
         <remove name="WebDAVModule" />
      </modules>
      <handlers>
        <remove name="WebDAV" />

I created a workaround in my custom repository.

	private DbConnection GetSqlConnection()
	{
		const string TESTINGDB = "memory";
		const string PTCONNSTRING = "Server=(local); Database=PieceTrackerDb; Trusted_Connection=True;";
		var cn = Context.Database.GetDbConnection();
		if (cn.ConnectionString.Contains(TESTINGDB))
		{
			cn = new SqlConnection(PTCONNSTRING);
		}
		var logMsg = "PTStaticDataTypeRepository.Get Connection String = " + cn.ConnectionString;
		Console.WriteLine(logMsg);
		return cn;
	}

Issue resolved my CORS for web.host site was wrong. I am now connecting OK.

Showing 1 to 4 of 4 entries