<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Data topics</title>
    <link>https://techcommunity.microsoft.com/t5/data/bd-p/data</link>
    <description>Data topics</description>
    <pubDate>Mon, 06 Apr 2026 15:41:22 GMT</pubDate>
    <dc:creator>data</dc:creator>
    <dc:date>2026-04-06T15:41:22Z</dc:date>
    <item>
      <title>Entity Framework DB permissions</title>
      <link>https://techcommunity.microsoft.com/t5/data/entity-framework-db-permissions/m-p/4502558#M75</link>
      <description>&lt;P&gt;I want to use Entity Framework with a .Net 9 app but have had difficulty finding information on what DB permissions it needs in the app database.&lt;/P&gt;&lt;P&gt;I've found a couple old StackOverflow posts but having created a user with the recommended db_datareader,&amp;nbsp;db_datawriter and db_ddladmin and updated the app connection string to use it and now the app won't start.&lt;/P&gt;&lt;P&gt;What more does it need?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 12:32:28 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/entity-framework-db-permissions/m-p/4502558#M75</guid>
      <dc:creator>LouisT</dc:creator>
      <dc:date>2026-03-16T12:32:28Z</dc:date>
    </item>
    <item>
      <title>Problem with the startswith function in NET 9</title>
      <link>https://techcommunity.microsoft.com/t5/data/problem-with-the-startswith-function-in-net-9/m-p/4430041#M74</link>
      <description>&lt;P&gt;Hi everyone, I have this request with Odata:&lt;/P&gt;&lt;P&gt;http://localhost:5194/NationalStates?$filter=startswith(state, 'NE')&lt;/P&gt;&lt;P&gt;This works correctly up to version 8.0.14 for the following packages:&lt;/P&gt;&lt;P&gt;MySql.EntityFrameworkCore&lt;BR /&gt;Microsoft.Extensions.DependencyInjection.Abstractions&lt;BR /&gt;Microsoft.EntityFrameworkCore&lt;BR /&gt;among others...&lt;/P&gt;&lt;P&gt;When I update these packages to version 9.0.0 or later, they stop working and give an internal mapping error.&lt;/P&gt;&lt;P&gt;Any clues about this?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 21:55:58 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/problem-with-the-startswith-function-in-net-9/m-p/4430041#M74</guid>
      <dc:creator>gusartadv</dc:creator>
      <dc:date>2025-07-03T21:55:58Z</dc:date>
    </item>
    <item>
      <title>EF CORE 8 failed to connect sqlite database file for .net web app in linux server</title>
      <link>https://techcommunity.microsoft.com/t5/data/ef-core-8-failed-to-connect-sqlite-database-file-for-net-web-app/m-p/4282939#M72</link>
      <description>&lt;P&gt;it created a dbcontext with no tables in memory but did not go to connect the existing database file. How can make ef connect the database file like in the windows?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 13:25:56 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/ef-core-8-failed-to-connect-sqlite-database-file-for-net-web-app/m-p/4282939#M72</guid>
      <dc:creator>developship</dc:creator>
      <dc:date>2024-10-30T13:25:56Z</dc:date>
    </item>
    <item>
      <title>EF Core display up to date data on predefine delay</title>
      <link>https://techcommunity.microsoft.com/t5/data/ef-core-display-up-to-date-data-on-predefine-delay/m-p/4262274#M71</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a C#/WPF project for which I use EF Core (database first) to transact with an SQL database. I am struggling with retreiving fresh data from the server on a predefine delay to be displayed on a dashboard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Scenario is this:&lt;/P&gt;&lt;P&gt;I have an entity call &lt;STRONG&gt;Cars&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cars&lt;/STRONG&gt; has a property that is a virtual ICollection of &lt;STRONG&gt;ToDo&lt;/STRONG&gt; call &lt;STRONG&gt;lstToDo&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Each &lt;STRONG&gt;ToDo&lt;/STRONG&gt; entity has a boolean property call Completed.&lt;/P&gt;&lt;P&gt;The data of SQL database can be modified by many users.&lt;/P&gt;&lt;P&gt;The dashboard is the application running on a computer that no one is using, and that need to display the latest data from the database every X minutes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So in my scenario everything is working fine except that whenever the property Completed is change, in the database, from false to true (or vice-versa) I am unable to get the new value. I tried using Eager Loading but without any luck.It will catch when a new row has been added to the table, but not when a change happen in an existing row.&lt;/P&gt;&lt;P&gt;The eager loading I use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;myContext.Cars
  .Include(c =&amp;gt; c.lstToDo)
  .Load();

myCollectionViewSource.Source = myContext.Cars.Local.ToObservableCollection();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, in my context I configured it to use LazyLoading.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestion will be more then welcome&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2024 22:27:54 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/ef-core-display-up-to-date-data-on-predefine-delay/m-p/4262274#M71</guid>
      <dc:creator>Alex_is_programming</dc:creator>
      <dc:date>2024-10-03T22:27:54Z</dc:date>
    </item>
    <item>
      <title>Entity framework core 8 return double quote in Oracle Query</title>
      <link>https://techcommunity.microsoft.com/t5/data/entity-framework-core-8-return-double-quote-in-oracle-query/m-p/4261611#M70</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;My project using .net core 8, when i debug code, always get error &lt;EM&gt;".net core ORA-00942: table or view does not exist&lt;/EM&gt;"&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;i would like to show data using this query:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="applescript"&gt;var data = _db.employee.ToQueryString();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i debug, the data variable show this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="applescript"&gt;SELECT "e"."id", "e"."empolyee_name", "e"."employee_code"
FROM "employee" "e"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Question:&lt;/STRONG&gt;&lt;BR /&gt;how to remove double quote " in EF query to this?&amp;nbsp; SELECT e . id , e . empolyee_name, e . employee_code FROM employee e.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i assume the error &lt;EM&gt;&lt;STRONG&gt;table or view does not exist&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;because my EF query returning double quote "".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to solve it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2024 07:12:35 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/entity-framework-core-8-return-double-quote-in-oracle-query/m-p/4261611#M70</guid>
      <dc:creator>tomtom2x</dc:creator>
      <dc:date>2024-10-03T07:12:35Z</dc:date>
    </item>
    <item>
      <title>Cannot connect to LocalDB (provider: Named Pipes Provider, error: 0 - No process is at the other end</title>
      <link>https://techcommunity.microsoft.com/t5/data/cannot-connect-to-localdb-provider-named-pipes-provider-error-0/m-p/4254342#M69</link>
      <description>&lt;P&gt;I'm trying to manually connect to LocalDB (both, SQL Server 2019 and SQL Server 2022 services) creating a new application database using ADO.NET (&lt;STRONG&gt;Microsoft.Data.SqlClient&lt;/STRONG&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Everytime I try to connect, I get a generic error telling me that the database file could not be attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error.log:&lt;/P&gt;&lt;PRE&gt;2024-09-17 19:30:18.40 Logon Error: 15350, Severity: 16, State: 1.&lt;BR /&gt;2024-09-17 19:30:18.40 Logon An attempt to attach an auto-named database for file C:\Temp\CvTest.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.&lt;BR /&gt;2024-09-17 19:31:02.66 Logon Error: 15350, Severity: 16, State: 1.&lt;BR /&gt;2024-09-17 19:31:02.66 Logon An attempt to attach an auto-named database for file C:\Temp\CvTest.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Debugging into the &lt;STRONG&gt;Microsoft.Data.SqlClient&lt;/STRONG&gt; source code, the following error turned out to be the real reason behind the issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;A connection to the server could be established, but an error occurred during the&lt;BR /&gt;login process. (provider: Named Pipes Provider, error: 0 - No process is at the&lt;BR /&gt;other end of the pipe).&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is causing this error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my simple test connection setup. It's a cheap connection string that every Microsoft sample is quoting:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;using SqlConnection con = new SqlConnection(@"Data Source=(LocalDb)\MSSQLLocalDB;Integrated Security=SSPI;MultipleActiveResultSets=True;AttachDBFilename=C:\Temp\CvTest.mdf");
con.Open();&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, it should work off the cuff. But it doesn't.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using SSMS, I can easily connect to the LocalDB instance and create/delete databases promptly, even with the provided path.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I already updated from MsLocalDb 15 to MsLocalDb 16, but to no avail.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 22:18:12 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/cannot-connect-to-localdb-provider-named-pipes-provider-error-0/m-p/4254342#M69</guid>
      <dc:creator>BetterToday</dc:creator>
      <dc:date>2024-09-24T22:18:12Z</dc:date>
    </item>
    <item>
      <title>C# &amp; EF Core : 2 databases with a Customertable and different Columns</title>
      <link>https://techcommunity.microsoft.com/t5/data/c-amp-ef-core-2-databases-with-a-customertable-and-different/m-p/4207301#M68</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a little PRoblem with my DbContext.&lt;/P&gt;&lt;P&gt;For Example: I have two Databases both have a Table Customer. One of the Customers has an Extension of our Software so in the Customertable there are for example 3 more columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now when i create the DataAccess Class of the Customer Table i add the Structure from the Customer Table and the 3 extra columns. Now when i Request a Customer for the Customer with the extra Columns all is fine. The Request for the other Customer gets an Error that the last 3 Columns from the Model are not in the Table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Unfortunately it is not possible to add the Columns to the other Customer Table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;so my Question is: Is there another Way to geht Records from both Databases with one Model Class and one DBContext?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried NotMapped and Required in DbContext, I tried Raw SQL but nothing worked. The only Solution is to create 2 DbContexts. But in Our Database there are more such Combinations of Table with different Columns.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can anyone help or provide a way to test?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Philipp&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 13:48:42 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/c-amp-ef-core-2-databases-with-a-customertable-and-different/m-p/4207301#M68</guid>
      <dc:creator>pwendel</dc:creator>
      <dc:date>2024-08-01T13:48:42Z</dc:date>
    </item>
    <item>
      <title>.NET solution generator</title>
      <link>https://techcommunity.microsoft.com/t5/data/net-solution-generator/m-p/4180227#M67</link>
      <description>&lt;P&gt;We have released a free version of our product //entity.services that allows you to generate .NET solutions (including the fully customizable source code) based on simple definitions of your data models. You can find a quick start guide on the GitHub page&amp;nbsp;&lt;A href="https://github.com/axlln/es-quick-start" target="_self"&gt;https://github.com/axlln/es-quick-start&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please try it and let us know what you think&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Goran&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2024 16:07:21 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/net-solution-generator/m-p/4180227#M67</guid>
      <dc:creator>goran</dc:creator>
      <dc:date>2024-07-01T16:07:21Z</dc:date>
    </item>
    <item>
      <title>EF Core : foreign key column with same name as existing navigation property</title>
      <link>https://techcommunity.microsoft.com/t5/data/ef-core-foreign-key-column-with-same-name-as-existing-navigation/m-p/4146146#M64</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;I&amp;nbsp;&lt;/SPAN&gt;want to use EF Core to map a legacy database. I cannot scaffold as there are hundreds of tables and I am only interested in very few and besides scaffolding generates names for the navigation properties which are not the ones I want. The situation is: I have a required many-to-one relationship linked by a column name that matches the name of the property that I want to give.&lt;/P&gt;&lt;P&gt;The code (simplified) is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;class&lt;/SPAN&gt; &lt;SPAN class=""&gt;EntityProperty&lt;/SPAN&gt;
{
    &lt;SPAN class=""&gt;public&lt;/SPAN&gt; ControlType ControlType { &lt;SPAN class=""&gt;get&lt;/SPAN&gt;; &lt;SPAN class=""&gt;set&lt;/SPAN&gt;; }
} 

&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;class&lt;/SPAN&gt; &lt;SPAN class=""&gt;ControlType&lt;/SPAN&gt;
{
    &lt;SPAN class=""&gt;public&lt;/SPAN&gt; List&amp;lt;EntityProperty&amp;gt; Properties { &lt;SPAN class=""&gt;get&lt;/SPAN&gt;; &lt;SPAN class=""&gt;set&lt;/SPAN&gt;; } = &lt;SPAN class=""&gt;new&lt;/SPAN&gt; List&amp;lt;EntityProperty&amp;gt;();
}&lt;/PRE&gt;&lt;P&gt;Nothing more is required, eg, I'm not using foreign key properties, just navigation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is, the foreign key column from the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;EntityProperties&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table to the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;ControlTypes&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is also called&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;ControlType.&lt;/P&gt;&lt;P&gt;So, when I try to map it as:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;builder.HasOne(x =&amp;gt; x.ControlType)
       .WithMany(x =&amp;gt; x.Properties)
       .IsRequired()
       .HasForeignKey(&lt;SPAN class=""&gt;"ControlType"&lt;/SPAN&gt;);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I want to use EF Core to map a legacy database. I cannot scaffold as there are hundreds of tables and I am only interested in very few. The situation is: I have a required many-to-one relationship linked by a column name that matches the name of the property that I want to give.&lt;/P&gt;&lt;P&gt;The code (simplified) is:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;class&lt;/SPAN&gt; &lt;SPAN class=""&gt;EntityProperty&lt;/SPAN&gt;
{
    &lt;SPAN class=""&gt;public&lt;/SPAN&gt; ControlType ControlType { &lt;SPAN class=""&gt;get&lt;/SPAN&gt;; &lt;SPAN class=""&gt;set&lt;/SPAN&gt;; }
} 

&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;class&lt;/SPAN&gt; &lt;SPAN class=""&gt;ControlType&lt;/SPAN&gt;
{
    &lt;SPAN class=""&gt;public&lt;/SPAN&gt; List&amp;lt;EntityProperty&amp;gt; Properties { &lt;SPAN class=""&gt;get&lt;/SPAN&gt;; &lt;SPAN class=""&gt;set&lt;/SPAN&gt;; } = &lt;SPAN class=""&gt;new&lt;/SPAN&gt; List&amp;lt;EntityProperty&amp;gt;();
}&lt;/PRE&gt;&lt;P&gt;The problem is, the foreign key column from the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;EntityProperties&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table to the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;ControlTypes&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is also called&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;ControlType.&lt;/P&gt;&lt;P&gt;So, when I try to map it as:&lt;/P&gt;&lt;PRE&gt;builder.HasOne(x =&amp;gt; x.ControlType)
       .WithMany(x =&amp;gt; x.Properties)
       .IsRequired()
       .HasForeignKey(&lt;SPAN class=""&gt;"ControlType"&lt;/SPAN&gt;);&lt;/PRE&gt;&lt;P&gt;I get the following exception:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;InvalidOperationException: The property or navigation 'ControlType' cannot be added to the 'EntityProperty' type because a property or navigation with the same name already exists on the 'EntityProperty' type.'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is with HasForeignKey, I guess it's because I am adding a shadow property when a "physical" property already exists, but I what I really mean to say is to use a different column name to link the two entities: what I want is to be able to specify a "not standard" column name for the foreign key, which I am not able to. I do not have a foreign key property, only a navigation property, and I do not want to have one.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 13:59:29 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/ef-core-foreign-key-column-with-same-name-as-existing-navigation/m-p/4146146#M64</guid>
      <dc:creator>Ricardo Peres</dc:creator>
      <dc:date>2024-05-20T13:59:29Z</dc:date>
    </item>
    <item>
      <title>Can I ignore a single return value when multiple values are returned?</title>
      <link>https://techcommunity.microsoft.com/t5/data/can-i-ignore-a-single-return-value-when-multiple-values-are/m-p/4131419#M63</link>
      <description>&lt;P&gt;Some time ago, the ability to create a function which has multiple return values was created.&amp;nbsp; Yes, I know this can be avoided by using out... but I was curious.&amp;nbsp; In traditional method calls, the return value can be ignored by not assigning the return value to a variable.&amp;nbsp; I recently decided to use multiple return values in a new method because I wanted to avoid having to worry about the method call when the return value isn't always used.&amp;nbsp; Turns out that may have been an oversight on my part, since I as far as I know, I still have to define a return value.&amp;nbsp; For example, if the return signature of "MyFunction" is (int, bool) and I don't need the bool value, I still have to define it (FAIK... which is the point here):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;private (int, bool) MyFunction(...)
{
     bool error = false;
     int someReturnValue = 0;
     //... does something and sets error if there is a problem

     return (someReturnValue, error);
}

public void MyUnconcernedCallerFunction()
{
     int ret;
     bool error; // what if I don't need to worry about the error here?
     (ret, error) = MyFunction(...);
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there currently any convention that allows me to not declare the bool error value if I don't need it? (i.e. can I ignore the bool part of the return?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SIDE NOTE: Why isn't there a general forum here?&amp;nbsp; While my example is language specific, the question isn't.&amp;nbsp; This is just a general .NET question having to do with data and there are no general options in the "Choose a Label" options.&amp;nbsp; I couldn't post without choosing one so I just picked the one that made the most sense.&lt;/P&gt;</description>
      <pubDate>Sat, 04 May 2024 21:49:14 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/can-i-ignore-a-single-return-value-when-multiple-values-are/m-p/4131419#M63</guid>
      <dc:creator>primem0ver</dc:creator>
      <dc:date>2024-05-04T21:49:14Z</dc:date>
    </item>
    <item>
      <title>"Thread was interrupted from a waiting state" from DbConnectionPool.CleanupCallback</title>
      <link>https://techcommunity.microsoft.com/t5/data/quot-thread-was-interrupted-from-a-waiting-state-quot-from/m-p/3913644#M60</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm getting this error, and I'm not able to fix it, or even understand from where it comes.&lt;/P&gt;&lt;P&gt;I'm also sure that all my SqlConnection are instanciated with Using (VB.NET), so the Dispose should be called for every one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have an idea about the cause?&lt;/P&gt;&lt;P&gt;This error started after upgraded the app to the .NET Framework 4.8.1, from 4.6.2. Maybe it's a coincidence...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Source: mscorlib; Message:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Thread was interrupted from a waiting state&lt;/SPAN&gt;&lt;SPAN&gt;.; Data:; StackTrace:&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Threading.WaitHandle.WaitOneNative(SafeHandle waitableSafeHandle, UInt32 millisecondsTimeout, Boolean hasThreadAffinity, Boolean exitContext)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Threading.WaitHandle.InternalWaitOne(SafeHandle waitableSafeHandle, Int64 millisecondsTimeout, Boolean hasThreadAffinity, Boolean exitContext)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Threading.WaitHandle.WaitOne(Int32 millisecondsTimeout, Boolean exitContext)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Data.ProviderBase.&lt;/SPAN&gt;&lt;SPAN&gt;DbConnectionPool.CleanupCallback&lt;/SPAN&gt;&lt;SPAN&gt;(Object state)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Threading.TimerQueueTimer.CallCallback()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Threading.TimerQueueTimer.Fire()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; at System.Threading.TimerQueue.FireNextTimers();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Pedro&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 11:23:14 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/quot-thread-was-interrupted-from-a-waiting-state-quot-from/m-p/3913644#M60</guid>
      <dc:creator>Pedro-Goncalves</dc:creator>
      <dc:date>2023-08-30T11:23:14Z</dc:date>
    </item>
    <item>
      <title>Subject: Help &amp; Support Case for ADO.NET Entity Framework back end changes &amp; front end changes with</title>
      <link>https://techcommunity.microsoft.com/t5/data/subject-help-amp-support-case-for-ado-net-entity-framework-back/m-p/3798454#M58</link>
      <description>&lt;P&gt;&amp;nbsp;sync to Model &amp;amp; Database respectively.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Help &amp;amp; Support Case&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From,&lt;/P&gt;
&lt;P&gt;Abhay Sakunde,&lt;/P&gt;
&lt;P&gt;Cognizant India Pvt. Ltd. Pune&lt;/P&gt;
&lt;P&gt;Project Team: MWS CWS Apps Team&lt;/P&gt;
&lt;P&gt;E-mail ID: (&lt;EM&gt;email removed for privacy reasons)&lt;/EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Mobile No.: (&lt;EM&gt;phone number removed for privacy reasons)&lt;/EM&gt;&lt;/H4&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To,&lt;/P&gt;
&lt;P&gt;The Manager,&lt;/P&gt;
&lt;P&gt;Human Resources Or Development Team,&lt;/P&gt;
&lt;P&gt;Microsoft India Pvt. Ltd. Pune&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Subject&lt;/U&gt;: Help &amp;amp; Support Case for ADO.NET Entity Framework back end changes &amp;amp; front end changes with sync to Model &amp;amp; Database respectively.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;Initially using Entity Workflows: Program / Model / Database Priority, we do the design of ADO.NET Entity Data Model &amp;amp; development of database. But once initial process is done if any changes occur either as back end changes into database or front end changes into model then how we can manage or do synchronization between ADO.NET Entity Data Model &amp;amp; Database? How it is done with respect to different type of Entity Workflows i.e. Program / Model / Database Priority?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are following options like&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Update Model From Database&lt;/LI&gt;
&lt;LI&gt;Generate Database From Model&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In case of Entity Workflows - Model Priority, Initially Model is designed &amp;amp; database is generated. Now &lt;U&gt;if model is changed only&lt;/U&gt; then option Generate Database From Model will work either to update existing database or new Database will get created? Please Clarify.&lt;/P&gt;
&lt;P&gt;In case of Entity Workflows - Database Priority, Initially database exists &amp;amp; model design is generated.&lt;/P&gt;
&lt;P&gt;Now, &lt;U&gt;if model is changed only&lt;/U&gt; then option Generate Database From Model will work either to update existing database or new Database will get created? Please Clarify.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Waiting for reply.&lt;/P&gt;
&lt;P&gt;Please let me know if any detail information required for mentioned feature.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Screens:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[1] Model &amp;amp; Database Options&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Abhay Sakunde&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 21:51:11 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/subject-help-amp-support-case-for-ado-net-entity-framework-back/m-p/3798454#M58</guid>
      <dc:creator>ABHAY_SAKUNDE</dc:creator>
      <dc:date>2023-05-08T21:51:11Z</dc:date>
    </item>
    <item>
      <title>Entity Framework core</title>
      <link>https://techcommunity.microsoft.com/t5/data/entity-framework-core/m-p/3730448#M56</link>
      <description>&lt;P&gt;Different instances of dbcontext, savechanges affect each other&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 05:52:41 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/entity-framework-core/m-p/3730448#M56</guid>
      <dc:creator>杰西2110</dc:creator>
      <dc:date>2023-02-01T05:52:41Z</dc:date>
    </item>
    <item>
      <title>Initializing TwitterClient To Access Twitter API</title>
      <link>https://techcommunity.microsoft.com/t5/data/initializing-twitterclient-to-access-twitter-api/m-p/3635251#M51</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, I keep on getting this error; " while trying to access the Twitter API using the TwitterClient. The Client builds successfully but then it shows this error when I run:&amp;nbsp;&lt;/SPAN&gt;dotnet run&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 15:04:20 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/initializing-twitterclient-to-access-twitter-api/m-p/3635251#M51</guid>
      <dc:creator>JeunesseAfricaine</dc:creator>
      <dc:date>2022-09-22T15:04:20Z</dc:date>
    </item>
    <item>
      <title>Access Restrictions and Parties Conflict</title>
      <link>https://techcommunity.microsoft.com/t5/data/access-restrictions-and-parties-conflict/m-p/3611438#M43</link>
      <description>&lt;UL&gt;&lt;LI&gt;First question:Where to find information about the archive of data on a global database attack and including threat flows with a full description of the place in and out of, time, participation, solution and other actions.&lt;/LI&gt;&lt;LI&gt;Second question: After answering the first, if an error or falsification of the problem or intentional deception is detected, further actions and the possibility of restoring Russia in the common process, common problem and situation in the world together&lt;/LI&gt;&lt;LI&gt;Third:Thanks in advance for the decision&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 29 Aug 2022 04:07:09 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/access-restrictions-and-parties-conflict/m-p/3611438#M43</guid>
      <dc:creator>FireTeam</dc:creator>
      <dc:date>2022-08-29T04:07:09Z</dc:date>
    </item>
    <item>
      <title>Types of sdk in .net 6 and their difference</title>
      <link>https://techcommunity.microsoft.com/t5/data/types-of-sdk-in-net-6-and-their-difference/m-p/3577485#M41</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;Can we know the difference between these 3 sdk versions in .net 6.0.5&lt;/P&gt;&lt;P&gt;1) SDK 6.0.300&lt;BR /&gt;2) SDK 6.0.203&lt;BR /&gt;3) SDK 6.0.105&lt;/P&gt;&lt;P&gt;Also if we install SDK 6.0.300 over SDK 6.0.101 ,we will be able to see two versions in control panel . So can you please let us know the difference between these 3 version (SDK 6.0.300,SDK 6.0.203,SDK 6.0.105) of SDK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2022 11:01:16 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/types-of-sdk-in-net-6-and-their-difference/m-p/3577485#M41</guid>
      <dc:creator>Darshan1385</dc:creator>
      <dc:date>2022-07-20T11:01:16Z</dc:date>
    </item>
    <item>
      <title>关于文件读取</title>
      <link>https://techcommunity.microsoft.com/t5/data/%E5%85%B3%E4%BA%8E%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96/m-p/3340085#M34</link>
      <description>&lt;P&gt;大家好：&lt;/P&gt;&lt;P&gt;请问一下，假如一个文件夹里有上万的文件，当我开发程序，使用方法创建一个文件流时，传入文件的路径，系统找到这个文件是否需要遍历这上万的文件才找到目标文件？&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;hello everyone:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Excuse me, if there are tens of thousands of files in a folder, when I develop a program and use the method to create a file stream, the path of the incoming file. Does the system need to traverse the tens of thousands of files to find the target file?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 16:40:36 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/%E5%85%B3%E4%BA%8E%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96/m-p/3340085#M34</guid>
      <dc:creator>niezheti</dc:creator>
      <dc:date>2022-05-08T16:40:36Z</dc:date>
    </item>
    <item>
      <title>SQL Sever and Apache Log4 vulnerabilities</title>
      <link>https://techcommunity.microsoft.com/t5/data/sql-sever-and-apache-log4-vulnerabilities/m-p/3064120#M17</link>
      <description>&lt;P&gt;We use SQL Server 2014 Management Studio, and SQL Server 2015 Reporting Services (SSRS?) on a server that is not owned by us. The operating system is Windows Sever 2012 R2.&lt;/P&gt;&lt;P&gt;I did not set up our SQL server.&lt;/P&gt;&lt;P&gt;An MS article I found says:&lt;/P&gt;&lt;H2&gt;SQL Server (on Windows) – all editions&lt;/H2&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: If a customer installs Java support and deploys Java Archives (JARs) that depend on the Log4j 2 library, they are advised to upgrade to the latest version or remove the Java Archives (JARs) that require the dependency.&lt;/P&gt;&lt;P&gt;Source:&amp;nbsp;&lt;A href="https://msrc-blog.microsoft.com/2021/12/11/microsofts-response-to-cve-2021-44228-apache-log4j2/" target="_blank" rel="noopener"&gt;https://msrc-blog.microsoft.com/2021/12/11/microsofts-response-to-cve-2021-44228-apache-log4j2/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I check if we have installed Java Support? How do I check if we use Java Archives (JARs)?&lt;/P&gt;&lt;P&gt;Appreciate any leads.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2022 04:34:29 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/sql-sever-and-apache-log4-vulnerabilities/m-p/3064120#M17</guid>
      <dc:creator>VickyO532</dc:creator>
      <dc:date>2022-01-18T04:34:29Z</dc:date>
    </item>
    <item>
      <title>How do create a matrix formula to calculate in all range (B:F) with this rare condition.</title>
      <link>https://techcommunity.microsoft.com/t5/data/how-do-create-a-matrix-formula-to-calculate-in-all-range-b-f/m-p/3063925#M16</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Bom dia família,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Preciso criar uma fórmula matricial para calcular quantas vezes essa coincidência aparece em todo o intervalo&amp;nbsp; &lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;B:F&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt; , de acordo com essas condições (&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt; A) na primeira linha&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt; ), (&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt; M) na segunda linha&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt; ). &lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Tentei com essas 2 fórmulas, mas conta apenas uma coincidência. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Alguém tem alguma sugestão por favor?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Desde já, obrigado.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 20:26:40 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/how-do-create-a-matrix-formula-to-calculate-in-all-range-b-f/m-p/3063925#M16</guid>
      <dc:creator>dpparner</dc:creator>
      <dc:date>2022-01-17T20:26:40Z</dc:date>
    </item>
    <item>
      <title>Window Service and ODP.NET Managed Driver</title>
      <link>https://techcommunity.microsoft.com/t5/data/window-service-and-odp-net-managed-driver/m-p/3031105#M6</link>
      <description>&lt;P&gt;So, I am creating a Windows Service using the .Net Framework, the problem is, the ODP.Net Managed Driver woke up in the Application Console, but when I converted it to Windows Service, the ODP.Net Managed Driver did not works and it doesn't. reading from Oracle Database.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 05:25:42 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/data/window-service-and-odp-net-managed-driver/m-p/3031105#M6</guid>
      <dc:creator>edisonpebojot</dc:creator>
      <dc:date>2021-12-06T05:25:42Z</dc:date>
    </item>
  </channel>
</rss>

